0
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.nameList.count;
}
-(UITableViewCell *)tableview:(UITableView *)tableview cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *[email protected]"Cell";
UITableViewCell *cell=[tableview dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell==nil) {
cell=[[UITableViewCell alloc]initWithFrame:CGRectZero reuseIdentifier:CellIdentifier];
//cell = [[UITableViewCell alloc]
// initWithStyle:UITableViewCellStyleDefault
// reuseIdentifier:CellIdentifier];
}
//Setup the cell
NSString *cellValue=[ListofItems objectAtIndex:indexPath.row];
cell.text=cellValue;
cell.textLabel.text = [self.nameList objectAtIndex: [indexPath row]];
return cell;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
嗨,大家好,我 有這些代碼和我不能看到我在我的tableview.?And值就這樣說:「節目的接收信號SIGABRT」 你能幫我哪裏是我的錯?錯誤中加載的UITableView
是啊謝謝..現在沒事 – santa 2012-02-10 10:06:24