1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #import <UIKit/UIKit.h>
- #import "XLFormViewController.h"
- #import "OCShareUser.h"
- #import "OCConstants.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
|