2010-09-29 78 views
0
NSString *ref = [item stringByMatching:myregex1 capture:2]; 
NSString *value = [item stringByMatching:myregex1 capture:3]; 

我只需將此添加到我的orderTable uitableview中,我該怎麼做:P。我找不到這樣做的一個簡單的方法這個請幫助:)只需在tableview中添加一行

我想它是在的UITableView這樣

(@"%@ :: %@", ref, value) 

感謝

回答

1

你必須把它添加到您的數據源然後做一個如果你希望它是在一個特定的單元格,則在該方法cellForRowAtIndexPath:,檢查第一或最後一個單元格和[orderTable reloadData];

+0

你能解釋一下如何添加到數據源嗎?如果你已經創建了一個TableViewController數據源並且默認添加了委託,那麼我從來沒有在 – user393273 2010-09-29 13:17:29

+0

之前使用過表格視圖...如果你已經將UITableView添加到了UIView中(在INterface構建器中),那麼你需要添加數據源和委託...來做到這一點..添加此在你的.h文件注意:只添加代碼從< to > ...休息只是爲了幫助你在哪裏添加.. @interface FirstViewController:UIViewController kthorat 2010-09-29 14:07:52

+0

謝謝現在如何添加到表? – user393273 2010-09-29 14:38:31

0

信息:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 
    // Cell Return 
    cell.textLabel.text = [NSString [email protected]"%@ :: %@", ref, value]; 
} 
+0

不抱歉,這是沒有幫助的:/ – user393273 2010-09-29 13:18:02

相關問題