Archive for the ‘ UITableViewCell – Customization ’ Category
This is how you call your UITablewVieCell class inside your - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath. (Considering that you were using a NIB – viewbased). static NSString *CellIdentifier = @"Cell" CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) NSArray *cellObject =[[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:nil options:nil]; for(id currentCell in cellObject) { if([currentCell isKindOfClass:[UITableViewCell class]]) [ READ MORE ]
Enter your email address to subscribe to this blog and receive notifications of new posts by email.
Join 4 other followers
Get every new post delivered to your Inbox.