如何重新加载 UITabBarController?
你好 我正在制作一个简单的程序,它从用户那里获取输入并将其保存为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
[myTableView reloadData];
到 myMethodNew 的末尾(将 myTableView 更改为表视图的名称)add
[myTableView reloadData];
to the end of your myMethodNew (change myTableView to whatever your table view is named as)