Set UITableView Delegate and DataSource

后端 未结 5 1541
生来不讨喜
生来不讨喜 2020-12-06 01:29

This is my problem: I have this small UITableView in my storyboard:\"enter

<
5条回答
  •  甜味超标
    2020-12-06 01:58

    (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        // Return the number of sections.
        return 0;
    }
    

    Number of sections should be set at least one

提交回复
热议问题