123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #import <UIKit/UIKit.h>
- #import "XLFormViewController.h"
- #import "OCShareUser.h"
- #import "OCConstants.h"
- #import "CCMetadata.h"
- @protocol CCShareUserOCDelegate;
- @interface CCShareUserOC : XLFormViewController
- @property (nonatomic, weak) id <CCShareUserOCDelegate> delegate;
- @property (nonatomic, weak) IBOutlet UIButton *endButton;
- @property (nonatomic, strong) NSMutableArray *selectedItems;
- @property (nonatomic, strong) NSArray *itemsShareWith;
- @property (nonatomic, strong) NSMutableArray *users;
- @property (nonatomic, strong) NSString *directUser;
- @property BOOL isDirectory;
- @property NSInteger shareType;
- - (IBAction)endButtonAction:(id)sender;
- - (void)reloadUserAndGroup:(NSArray *)items;
- @end
- @protocol CCShareUserOCDelegate
- - (void)getUserAndGroup:(NSString *)find;
- - (void)shareUserAndGroup:(NSString *)user shareeType:(NSInteger)shareeType permission:(NSInteger)permission;
- @end
|