我希望能在这里挑选一位天才的大脑。我想教自己开始创建一些更高级的iOS UI视图。所以这就是我所拥有的:
现在,当我运行程序时,没有数据显示。没有错误或任何内容,但没有数据显示。
以下是我在View Controller类中进行测试的代码片段:
- (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 4;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
LVGPersonEventTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"personEventTableCell" forIndexPath:indexPath];
// Configure the cell...
cell.eventDayLabel.text = @"Monday";
cell.eventMonthDateLabel.text = @"June 18";
cell.eventVenueNameLabel.text = @"Club Rain";
cell.eventAddressLabel.text = @"Address....";
cell.eventTimeLabel.text = @"11PM - 3AM";
return cell;
}