如何重新加载 UITabBarController?

发布于 2024-10-16 00:08:32 字数 1337 浏览 1 评论 0原文

你好 我正在制作一个简单的程序,它从用户那里获取输入并将其保存为 NSMutableArray,我使用一种方法将该 NSMutableArray 传递给另一个类,该类是 UITableViewController 的子类。 NSMutableArray 已正确传递,我可以使用 NSLog 看到它。但我想在我的表格单元格中看到 NSMutableArray。

我将其编写为以下代码,但我认为它没有重新加载 UITabBarController,所以请查看代码并帮助我...

-(void) myMethodNew:(NSMutableArray*)allOrders {
    sameallOrders = [[NSMutableArray alloc] init];
    [sameallOrders addObject:allOrders];
    NSLog(@"%@", sameallOrders);
}

- (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 [sameallOrders count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    NSString *cellValue = [sameallOrders objectAtIndex:indexPath.row];
    cell.textLabel.text = cellValue;

    return cell;
}

如果您不明白我所做的任何事情,请问我,我会再次正确解释, 帮我 .... 我肯定会夸...

Hello
I am making a simple program which is taking input from user and saving it is an NSMutableArray, I am passing that NSMutableArray to another class which is subclass of UITableViewController by using a method. The NSMutableArray is correctly passed and I can see it by using NSLog. but I want to see the NSMutableArray in my table cells.

I am writing it as following code, but I think it is not relaoding the UITabBarController, so please see the code and help me out...

-(void) myMethodNew:(NSMutableArray*)allOrders {
    sameallOrders = [[NSMutableArray alloc] init];
    [sameallOrders addObject:allOrders];
    NSLog(@"%@", sameallOrders);
}

- (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 [sameallOrders count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    NSString *cellValue = [sameallOrders objectAtIndex:indexPath.row];
    cell.textLabel.text = cellValue;

    return cell;
}

if you can't understand anything which I have done, ask me, I will properly explain again, help me ....
I will praise definitely...

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

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

发布评论

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

评论(1

极度宠爱 2024-10-23 00:08:32

添加 [myTableView reloadData]; 到 myMethodNew 的末尾(将 myTableView 更改为表视图的名称)

  -(void) myMethodNew:(NSMutableArray*)allOrders {
        sameallOrders = [[NSMutableArray alloc] init];
        [sameallOrders addObject:allOrders];
        NSLog(@"%@", sameallOrders);
    }

add [myTableView reloadData]; to the end of your myMethodNew (change myTableView to whatever your table view is named as)

  -(void) myMethodNew:(NSMutableArray*)allOrders {
        sameallOrders = [[NSMutableArray alloc] init];
        [sameallOrders addObject:allOrders];
        NSLog(@"%@", sameallOrders);
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文