我遇到了我的UITableviewCell
問題,它只生成我的NSMutableArray
中的第一個索引。我使用NSLog(@「Count%i%@」,[enterPrise_names count],enterPrise_names); 要檢查我的NSMutableArray
裏面的物體數量,一切看起來都很好。 我已經連線了所有東西,包括UItableViewDataSource
,UITableViewDelege
和匹配TableViewCell的單元格標識符。帶有UITableViewCell的NSMutableArray
問題是我的兩個標籤僅顯示我的NSMutableArrays
中的第一個對象。 我想發佈我的模擬照片給你們,但這是我的第一篇Stackoverflow文章,我沒有足夠的聲望來完成這個任務。
以及它看起來像這樣
富士暹
富士暹
富士暹
富士暹
富士暹
富士暹羅
這裏是我的代碼
#import "MyQueueViewController.h"
#import "QueueCell.h"
@interface MyQueueViewController()
@end
@implementation MyQueueViewController
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidAppear:(BOOL)animated
{
}
- (void)viewDidLoad
{
[super viewDidLoad];
enterPrise_names = [[NSMutableArray alloc]initWithObjects:@"Fuji",@"MK",@"KFC",@"PizzaHut",@"McDonal",@"BurgerKing", nil];
BranchName = [[NSMutableArray alloc]initWithObjects:@"Siam",@"Paragon", @"CTW", @"Pinklao", @"Bangkae", @"Bangna", nil];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [enterPrise_names count];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *MyIdentifier = @"QueueCell";
QueueCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
cell = [[QueueCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier];
}
NSLog(@"Count %i %@", [enterPrise_names count], enterPrise_names);
cell.txtBranch.text = [BranchName objectAtIndex:indexPath.row];
cell.txtShop.text = [enterPrise_names objectAtIndex:indexPath.row];
return cell;
}
我想如果任何你們會指出我的錯誤是非常讚賞。 非常感謝您的幫助。
Yeahhhhh it works !!! 非常感謝你我忽視了 非常感謝Justafinger,你是最棒的! – user3027109
你知道我該如何解決這個問題?因爲我已經有了解決方案。我在這裏很新。 – user3027109
你並沒有真正關閉問題,你只是接受答案。如果其他人有同樣的問題,他們將能夠看到什麼解決了它。 – streem