// // DetailRelatedCell.h // RedAnt ERP Mobile // // Created by Ray on 14-7-31. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved. // #import @class DetailTopicCell; @protocol DetailRelatedCellDelegate @required - (void) TopicItemClicked:(NSString*) product_id category:(NSString*) category; //- (void) LongPress:(UIView*)view row:(int) x column:(int) y; //- (void) LongPress:(UIView*)view row:(int) x; //- (void) Tap:(UIView*)view row:(int) x column:(int) y; //- (void) Tap:(UIView*)view row:(int) x; @end @interface DetailTopicCell : UITableViewCell { @private // id __unsafe_unretained _dataSource; id __weak itemdelegate; } @property (strong, nonatomic) IBOutlet UICollectionView *topicCollectionView; @property (weak, nonatomic) id itemdelegate; @property (strong, nonatomic) NSDictionary* related_data; -(void) begin_refresh; -(void) end_refresh; @property (strong, nonatomic) IBOutlet UILabel *refreshLabel; @end /* @class SimpleGrid; @protocol SimpleGridDelegate @required - (void) LongPress:(UIView*)view row:(int) x column:(int) y; - (void) LongPress:(UIView*)view row:(int) x; - (void) Tap:(UIView*)view row:(int) x column:(int) y; - (void) Tap:(UIView*)view row:(int) x; @end @interface SimpleGrid : UIScrollView { @private // id __unsafe_unretained _dataSource; id __weak griddelegate; } // @property (weak, nonatomic) id griddelegate; */