12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #import <UIKit/UIKit.h>
- #import "CCDetail.h"
- #import "UIScrollView+EmptyDataSet.h"
- #import "TWMessageBarManager.h"
- #import "AHKActionSheet.h"
- #import "MGSwipeTableCell.h"
- #import "CCFavoritesCell.h"
- #import "CCUtility.h"
- #import "CCMain.h"
- #import "CCGraphics.h"
- @class tableMetadata;
- @interface CCFavorites : UIViewController <UITableViewDataSource, UITableViewDelegate, UIDocumentInteractionControllerDelegate, UIActionSheetDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate, MGSwipeTableCellDelegate>
- @property (nonatomic, weak) IBOutlet UITableView *tableView;
- @property (nonatomic, strong) tableMetadata *metadata;
- @property (nonatomic, strong) NSString *serverUrl;
- @property (nonatomic, strong) NSString *titleViewControl;
- @property (nonatomic, weak) CCDetail *detailViewController;
- @property (nonatomic, strong) UIDocumentInteractionController *docController;
- - (void)readListingFavorites;
- - (void)addFavoriteFolder:(NSString *)serverUrl;
- @end
|