2012-05-28 139 views
1

在我的故事板的一個可用視圖中,我定義了一個原型單元格。在該單元格中(自定義類kzTexturedCellv2)我有一個文本視圖和一個圖像視圖。我還給了單元格標識符(「kzTexturedCellv2」)並使用了爲什麼我的原型單元格顯示空白?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 

kzTexturedCellv2 *cell = [[kzTexturedCellv2 alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"kzTexturedCellv2"]; 

... 

來創建單元格。問題在於單元格顯示爲空白(沒有添加到storyboad中的任何子視圖)。當我嘗試在單元格內設置uitextview的文本時,它始終返回null。這裏發生了什麼?

回答

0

你能PLZ看到下面的代碼來處理。我希望這將有助於你

- (void)viewDidLoad{ 
[super viewDidLoad]; 

// Create your image 
UIImage *image = [UIImage imageNamed: @"person_menu.png"]; 
UIBarButtonItem *barButton = [[UIBarButtonItem alloc] 
           initWithImage:image 
           style:UIBarButtonItemStylePlain 
           target:nil 
           action:nil]; 
// set the text view to the image view 
self.navigationItem.leftBarButtonItem = barButton; 

menuItems = @[@"title", @"Payment", @"History",@"BookNow",@"Help", @"Promotions",@"Notifications", @"Settings", @"logOut"]; 
} 
#pragma mark 
#pragma mark - UITableViewDelegate Methods 
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ 
// Return the number of sections. 
return 1; 
} 

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ 
// Return the number of rows in the section. 
return [menuItems count]; 
} 
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ 
if (indexPath.row == 0) { 
    return 140; 
}else{ 
    return 75; 
} 
} 
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ 
NSString *CellIdentifier = [menuItems objectAtIndex:indexPath.row]; 
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; 
cell.highlighted = YES; 
return cell; 
} 

什麼都你的UITableViewCell有標識,您可以收集這些並把它添加到一個NSArray的

對於你剛纔的情況下,你可以使用這樣的:

kzTexturedCellv2 *cell = [tableView dequeueReusableCellWithIdentifier:@"kzTexturedCellv2"]; 
相關問題