I want to use a custom UITableviewCell with UITableView in same xib without creating a UITableViewCell class?
As you can see bellow i set the identifier for UITableV
Add a UITableViewCell *customCell property to your view controller (for example, your file ShowUsers.h)...
@property (nonatomic, strong) IBOutlet UITableViewCell *customCell;
and connect it to the custom cell in your xib. Then use the following code in cellForRow (for example, your file ShowUsers.m) :
if (cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"NibName" owner:self options:nil];
cell = self.customCell;
self.customCell = nil;
}