如何將對象添加到UITableView中?如何將對象添加到UITableView中?
1
A
回答
2
您必須首先在界面文件中使用UITableView的IBOutlet對象,然後使用界面構建器將其綁定。在界面構建器屬性中設置UITableView的委託和數據源。
並在您的項目中執行以下編碼。
在h文件:
@interface RootViewController : UITableViewController<UITableViewDelegate,UITableViewDataSource> {
IBOutlet UITableView *tblView;
}
在.m文件:
// Customize the number of sections in the table view.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
//自定義表中的視圖中的行的數目。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return n;// n for number of row.
}
//自定義表格視圖單元格的外觀。
- (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];
}
// Configure the cell.
return cell;
}
1
1
表視圖由數據源填充,數據源通常是對象數組。
我建議你通過一些關於tableviews的教程來看看,並委託方法。
http://icodeblog.com/2008/08/08/iphone-programming-tutorial-populating-uitableview-with-an-nsarray/
icodeblog對於初學者來說是夢幻般的網站。
相關問題
- 1. 如何將對象添加到對象?
- 2. 如何將UITableView添加到包含其他對象的父級?
- 3. 如何將NSMutableArray添加到對象中?
- 4. 如何將UITableView添加到UIView中?
- 5. 如何在PHP中將對象添加到對象數組中?
- 6. 如何在javascript中將對象添加到對象中
- 7. Java,如何將對象添加到LinkedList?
- 8. 如何將屬性添加到對象?
- 9. 如何將類對象添加到nsmutablearray
- 10. 如何將新對象添加到ArrayList?
- 11. 如何將新對象添加到xamarin?
- 12. 如何將div添加到extjs對象?
- 13. 如何將extjs對象添加到html?
- 14. 如何將對象添加到數組?
- 15. 如何將downloadUrl添加到firebaseDB對象?
- 16. 如何將對象添加到數組
- 17. 如何將數據添加到對象?
- 18. 如何將對象添加到NSMutableArray
- 19. 如何將值添加到JSON對象?
- 20. 如何將NSDictionary對象添加到NSMutableArray?
- 21. 如何將新的php對象添加到對象數組中
- 22. 如何將對象添加到對象內的ArrayList中
- 23. 如何將對象添加到javascript對象數組中
- 24. 如何將對象添加到Javascript中的對象?
- 25. 如何將UITableView添加到UIAlertView?
- 26. 如何將部分添加到UITableView?
- 27. 如何將UITextView添加到UITableView細節
- 28. 如何將陰影添加到UITableView?
- 29. 如何將單元添加到UITableView?
- 30. 如何將描述添加到UITableView
閱讀教程,也許? – 2010-12-06 17:29:11