試圖用自定義單元格製作表格視圖。 我看了一些教程,而不是打開一個新的項目,並按照一步一步的步驟。 我試圖用我目前的做。這樣我就可以解決問題並學習更多。UITableView Custon單元不工作
所以我在這裏做了到目前爲止的步驟: 簡單的實現代碼如下:
(WorkoutList.xib)
WorkoutList.h(workoutTableView是一個U看到上面的圖片)
WorkoutList.m:
- (void)viewDidLoad
{
[super viewDidLoad];
self.workoutTableView.dataSource = self;
self.workoutTableView.delegate = self;
TitleArray = [[NSArray alloc] initWithObjects:@"First", @"Second", @"Third", nil];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return TitleArray.count;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 60;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
WorkoutCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell)
{
cell = [[WorkoutCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.workoutTitle.text = [TitleArray objectAtIndex:indexPath.row];
cell.workoutImage.image = [UIImage imageNamed:@"list-item-icon3"];
return cell;
}
WorkoutCell.xib:
自定義類是:WorkoutCell 標識符是:細胞
WorkoutCell.h:
我看到的只是一個emp ty TableView ..
我知道它有一個很長的問題,但它對我來說理解它並查看我的錯誤在哪裏非常重要。非常感謝 !
什麼是「不工作」?沒有把我訪問鏈接請。形容它! – 2013-10-31 09:58:33
我只是寫了一切關於我的問題,與代碼和圖像.. – user2936284
好,比你得到了投票 – 2013-10-31 10:00:40