我有一个名为
@interface Appointment : UIViewController <UITableViewDelegate, UITextFieldDelegate, UIActionSheetDelegate>
{
IBOutlet UITableViewCell *cellName;
IBOutlet UITableViewCell *cellPhone;
IBOutlet UITableViewCell *cellEmail;
IBOutlet UITableViewCell *cellType;
IBOutlet UITextField* txtName;
IBOutlet UITextField* txtPhone;
IBOutlet UITextField* txtEmail;
IBOutlet UITextField* txtType;
IBOutlet UITableView *tableView;
}
在我的故事板中,视图控制器顶部有一个图像,一个条形图,下面是 tableView。我也连接了tableView。tableview 的 tableViewCells 显示得很好,但是当我运行代码时,整个屏幕都是空白的
1-为什么我的 TableView 不显示单元格 2-如何将图像设置为 TableView 的背景而不是默认
最好的祝福