123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #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"
- #import "CCAccountWeb.h"
- #import "CCBancomat.h"
- #import "CCCartaDiCredito.h"
- #import "CCCartaIdentita.h"
- #import "CCContoCorrente.h"
- #import "CCNote.h"
- #import "CCPassaporto.h"
- #import "CCPatenteGuida.h"
- @class tableMetadata;
- @interface CCFavorites : UIViewController <UITableViewDataSource, UITableViewDelegate, UIDocumentInteractionControllerDelegate, UIActionSheetDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate, CCAccountWebDelegate, CCBancomatDelegate, CCCartaDiCreditoDelegate, CCCartaIdentitaDelegate, CCContoCorrenteDelegate, CCNoteDelegate, CCPassaportoDelegate, CCPatenteGuidaDelegate, 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
|