我有一個表視圖的iOS的TableView如何訪問自定義單元格變量
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
**NSString *channelID = [object objectForKey:@"channelID"];**
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell==nil)
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier];
}
我訪問的tableview細胞像這樣:
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
for (NSIndexPath *path in [tableView indexPathsForVisibleRows]) {
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:path];
}
//I want to access cell.ChannelID //
}
我如何可以訪問的channelID變量? 當用戶停止滾動時,我想訪問可見的單元格和自定義變量。
謝謝
什麼是「對象」? – Moxy