我想在我的web服務中獲取somes書籍的名稱,並將它們設置在我的tableView中,但我不知道如何從我的html中獲取數據並將它們寫入我的tableview中。我怎樣才能做到這一點?我怎樣才能讀取html的完全部分,然後在我的tableView的單元格中寫入這些部分。如何將我的表格視圖連接到我的web服務?
謝謝!!
現在我正在寫我的tableView一個本地的NSMutableArray,但我想從html讀取並將它們寫入我的tableView。任何想法?
- (void)viewDidLoad {
[super viewDidLoad];
listOfItems = [[NSMutableArray alloc] init];
NSArray *countriesToLiveInArray = [NSArray arrayWithObjects:@"Iceland", @"Greenland", @"Switzerland", @"Norway", @"New Zealand", @"Greece", @"Italy", @"Ireland", nil];
[listOfItems addObjectsFromArray:countriesToLiveInArray];
copyListOfItems = [[NSMutableArray alloc] init];
//Add the search bar
self.tableView.tableHeaderView = searchBar;
searchBar.autocorrectionType = UITextAutocorrectionTypeNo;
searching = NO;
letUserSelectRow = YES;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if (searching)
return [copyListOfItems count];
else {
printf("ListaCountRow:%d\n", [listOfItems count]);
return [listOfItems count];
}
}
歡迎來到SO。你能否在你試過的一些代碼中發帖?它使我們更容易理解問題 – 2011-06-02 17:03:04