1234567891011121314151617181920212223242526 |
- #import <UIKit/UIKit.h>
- @protocol FaceViewControllerDelegate <NSObject>
- - (void) selectImageNameString:(NSString*)imageName ShortName:(NSString *)shortName isSelectImage:(BOOL)isSelectImage;
- - (void) faceViewDeleteAction;
- @end
- @interface FaceViewController : UIView <UIScrollViewDelegate>{
- NSMutableArray *_phraseArray;
- UIScrollView *_sv;
- UIPageControl* _pc;
- BOOL pageControlIsChanging;
- }
- @property (nonatomic, weak) id<FaceViewControllerDelegate> delegate;
- //@property (nonatomic, strong) NSMutableArray *faceArray;
- //@property (nonatomic, strong) NSMutableArray *imageArrayC;
- //@property (nonatomic, strong) NSMutableArray *imageArrayE;
- @property (nonatomic, strong) NSMutableArray *imageArray;
- @property (nonatomic, strong) NSMutableArray *shortNameArray;
- @property (nonatomic, strong) NSMutableArray *shortNameArrayC;
- @property (nonatomic, strong) NSMutableArray *shortNameArrayE;
- @end
|