0
A
回答
1
這是你如何添加UISwitch視圖表格單元格。 (作爲附件)
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
//add a switch
UISwitch *switchview = [[UISwitch alloc] initWithFrame:CGRectZero];
cell.accessoryView = switchview;
[switchview release];
}
cell.textLabel.text = [NSString stringWithFormat:@"%d", indexPath.row];
return cell;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
//add a switch
UISwitch *switchview = [[UISwitch alloc] initWithFrame:CGRectZero];
cell.accessoryView = switchview;
[switchview release];
}
cell.textLabel.text = [NSString stringWithFormat:@"%d", indexPath.row];
return cell;
}
1
是的,它是一個表視圖控制器..分組的樣式...第一部分有7行 我不能肯定如果派生或不,但我想不...你可以添加視圖到特定的行,所以你可以自定義細胞......派生表細胞不是強制性的
1
相關問題
- 1. 在一個UITableViewController
- 2. iOS UITableViewController didSelectRowAtIndexPath不加載另一個UITableViewController
- 3. 一個UITableViewController頁腳
- 4. 它真的是一個activex控件嗎?
- 5. 它會是一個Android服務嗎?
- 6. 它是一個opencv RotatedRect的bug嗎?
- 7. nopCommerce - 它是第一個代碼嗎?
- 8. img {display:table-cell} - 它是一個錯誤嗎?
- 9. MySQL timediff - 它是一個錯誤嗎?
- 10. Cassandra System.OutOfMemoryException,它是一個Thrift錯誤嗎?
- 11. 它是一個堆棧框架嗎?
- 12. 它是一個FireFox的bug嗎?
- 13. 它是一個REST Web服務嗎?
- 14. 是否可以將一個UITableViewController放入一個CollectionViewCell中?
- 15. UITableViewController並推動它的DetailViewController
- 16. UITableViewController不能作爲另一個VC的代理工作嗎?
- 17. 我可以把一個UIPageControl放在UITableViewController的表頭中嗎?
- 18. 我可以讓UITableViewController和UIViewController繼承同一個類嗎?
- 19. UITableViewController與NSCoding兼容嗎?
- 20. 你可以添加一個UITableViewController的TableView到另一個視圖嗎?
- 21. 通過performSelector從一個UITableViewController到另一個UITableViewController的數據尋找:withObject:
- 22. UITableViewController凍結時,延續到另一個UITableViewController
- 23. 是' - >'是一個運算符嗎?它返回什麼?
- 24. 它只是const char *的第一個字符是常量嗎?
- 25. ng-content是一個組件嗎?它是如何實現的?
- 26. 當用戶代理是「Java/1.6.0_32」時它是一個bot嗎?
- 27. 一個UITableViewController在多個UIViewcontrollers中
- 28. 添加第二個UIToolbar到一個UITableViewController
- 29. 在一個UITableViewController中有兩個UITableViews
- 30. `__value`是一個gcc擴展名,如果是,它是做什麼的?它有一個VC++的等價物嗎?
那麼accessoryView中的其他控制器呢?像預覽> 2行 – Burak 2012-04-17 18:24:02
您最好參考Apple的Table View Programming Guide:http://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/TableView_iPhone/AboutTableViewsiPhone/AboutTableViewsiPhone.html#//apple_ref/doc/uid/TP40007451 – graver 2012-04-17 18:34:57
非常感謝 – Burak 2012-04-17 19:23:14