searchbar

平成26年9月4日
階層
スクリーンショット 2014-09-04 1.17.31 PM

search Barを使用する場合の措置について

[objc]
– (TableViewCustomCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";

// 重要 Search Barを使用する場合は、self.をtableViewの頭にいれる。
//TableViewCustomCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier ];
TableViewCustomCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier ];
//
//
}
[/objc]