UITableView 将数组对象放入部分

发布于 2024-11-17 01:37:58 字数 359 浏览 3 评论 0原文

嘿伙计们,我需要知道谁将这些数组对象放入两个单独的部分,这意味着一个部分用于红色单元格,另一个部分用于蓝色单元格。非常感谢您一整天都在这方面的帮助。这是我的代码:

-(void)viewDidLoad {

    [super viewDidLoad];
    //Initialize the array.
    array = [[NSMutableArray alloc] init];
    [array addObject:@"Red"];
    [array addObject:@"Blue"];

    self.ViewTable.backgroundColor = [UIColor clearColor];    
}

Hey guys I need to know who to put these array objects into two separate sections, that means one section for the red cell and another section for the blue cell. Would really appreciate your help been stuck on this all day now. Here is my code:

-(void)viewDidLoad {

    [super viewDidLoad];
    //Initialize the array.
    array = [[NSMutableArray alloc] init];
    [array addObject:@"Red"];
    [array addObject:@"Blue"];

    self.ViewTable.backgroundColor = [UIColor clearColor];    
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清醇 2024-11-24 01:37:58

您需要实现:

返回部分数:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

返回请求部分的行数

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

通过读取indexPath.row 和indexPath.section 返回正确的单元

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

格因此,对于红色,您将查找indexPath.section 等于0 的单元格请求,并且indexPath.row 等于 0。蓝色表示 indexPath.section 等于 1,indexPath.row 等于 0

You need to implement:

return number of sections:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

return number of rows for the requested section

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

return correct cell by reading both indexPath.row and indexPath.section

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

So for red you would look for a cell request that has indexPath.section equal to 0 and indexPath.row equal to 0. blue would be indexPath.section equal to 1 and indexPath.row equal to 0

陌上青苔 2024-11-24 01:37:58
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 2; // This returns 2 sections
}

更新:
在cellForRowAtIndexPath中

NSInteger section = [IndexPath section];

if  (section == 0)

  // write your code for red here

if  (section == 1)

  // write your code for blue here
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 2; // This returns 2 sections
}

Updated:
In the cellForRowAtIndexPath

NSInteger section = [IndexPath section];

if  (section == 0)

  // write your code for red here

if  (section == 1)

  // write your code for blue here
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文