AddPictureViewController.h 402 Bytes
Newer Older
admin's avatar
admin committed
1 2 3 4 5 6 7 8 9 10
//
//  AddPictureViewController.h
//  redstar
//
//  Created by admin on 15/12/7.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>

11 12 13 14 15 16
@protocol AddPictureDelegate <NSObject>

- (void)reloadList;

@end

admin's avatar
admin committed
17
@interface AddPictureViewController : UIViewController
admin's avatar
admin committed
18
@property (nonatomic, copy) NSString *category;
19 20

@property (nonatomic, assign) id <AddPictureDelegate>delegate;
admin's avatar
admin committed
21
@end