1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #import <UIKit/UIKit.h>
- #import "XLFormViewController.h"
- #import "CCShareUserOC.h"
- #import "CCSharePermissionOC.h"
- @class tableMetadata;
- @protocol CCShareOCDelegate;
- @interface CCShareOC : XLFormViewController
- @property (nonatomic, weak) id <CCShareOCDelegate> delegate;
- @property (nonatomic, weak) IBOutlet UIImageView *fileImageView;
- @property (nonatomic, weak) IBOutlet UILabel *labelTitle;
- @property (nonatomic, weak) IBOutlet UILabel *labelSharedWithYouBy;
- @property (nonatomic, weak) IBOutlet UIButton *endButton;
- @property (nonatomic, strong) NSString *serverUrl;
- @property (nonatomic, strong) NSString *shareLink;
- @property (nonatomic, strong) NSString *shareUserAndGroup;
- @property (nonatomic, strong) tableMetadata *metadata;
- @property (nonatomic, strong) OCSharedDto *itemShareLink;
- @property (nonatomic, strong) NSArray *itemsUserAndGroupLink;
- @property (nonatomic, strong) NSMutableArray *itemsShareWith;
- @property (nonatomic, weak) CCShareUserOC *shareUserOC;
- @property (nonatomic, weak) CCSharePermissionOC *sharePermissionOC;
- - (IBAction)endButtonAction:(id)sender;
- @end
- @protocol CCShareOCDelegate
- - (void)readShareServer;
- @end
|