123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #import <UIKit/UIKit.h>
- #import <DZNEmptyDataSet/UIScrollView+EmptyDataSet.h>
- #import "CCCellMain.h"
- #import "CCCellMainTransfer.h"
- #import "CCUtility.h"
- #import "CCMain.h"
- #import "CCGraphics.h"
- @class tableMetadata;
- @interface CCFavorites : UIViewController <UITableViewDataSource, UITableViewDelegate, UIActionSheetDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate, MGSwipeTableCellDelegate, UIViewControllerPreviewingDelegate>
- @property (nonatomic, weak) IBOutlet UITableView *tableView;
- @property (nonatomic, strong) tableMetadata *metadata;
- @property (nonatomic, strong) tableMetadata *metadataForPushDetail;
- @property (nonatomic, strong) NSString *selectorForPushDetail;
- @property (nonatomic, strong) NSString *serverUrl;
- @property (nonatomic, strong) NSString *titleViewControl;
- - (void)shouldPerformSegue:(tableMetadata *)metadata selector:(NSString *)selector;
- - (void)reloadDatasource:(NSString *)ocId action:(NSInteger)action;
- - (void)listingFavorites;
- - (void)actionDelete:(NSIndexPath *)indexPath;
- @end
|