mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-14 23:21:50 +00:00
21 lines
518 B
Objective-C
21 lines
518 B
Objective-C
//
|
|
// LeaImageSliderViewController.h
|
|
// Leanote
|
|
//
|
|
// Created by life on 15/7/28.
|
|
// Copyright (c) 2015 Leanote.com. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface LeaImageSliderViewController : UIViewController<UIPageViewControllerDataSource>{
|
|
}
|
|
|
|
@property (strong, nonatomic) UIPageViewController *pageController;
|
|
@property (strong, nonatomic) NSArray *pageContent;
|
|
|
|
@property (strong, nonatomic) NSArray *urlArr;
|
|
@property (strong, nonatomic) NSString *curUrl;
|
|
@property NSUInteger curIndex;
|
|
|
|
@end |