I am newbie to objective-c and sqlite.I have inserted data in to table using sqlite successfully.My project contains 2 pages
Add Reminder page:Where user enters data and
You should really create a Custom UITableViewCell.
But for a quick fix answer you could replace the bottom [cell addSubview] lines with the following
cell.contentView = [[UIView alloc] init] autorelease]
[cell.contentView addSubview:label1];
[cell.contentView addSubview:label2];
[cell.contentView addSubview:label3];
[cell.contentView addSubview:label4];