有沒有在代碼中添加一些隱藏信息到UITableViewCell的方法?將隱藏信息添加到UITableViewCell
使用案例:
- 在活動供稿,
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
被調用,每個單元都有一個活動。每個都有自己獨特的「activityId」。 - 每個細胞都有了其中的一些按鈕(具有唯一的標籤),並按下時,給定的活動是「喜歡」
- 每個按鈕都有一個IBOutlet,那麼它會調用模型然後處理像
我對IBOutlet中的代碼是:
- (IBAction)buttonUp:(UIButton *)sender {
UIButton *btn = (UIButton *) sender;
UITableViewCell *cell = (UITableViewCell *) [[btn superview] superview];
UIView *cellView = [cell.contentView viewWithTag: ..myUniqueButtonTag.. ];
NSLog(@"activityId is: %@", ...);
}
使用cell.accessibilityValue併爲其分配數據..當點擊找到該單元格及其accessibilityabilityValue –