English 中文(简体)
UITableView isn tloading the data from my plist file what is i do wrong?
原标题:UITableView isn t loading the data from my plist file what am i doing wrong?

Okay,因此,我有一封信,我试图用一个名单文件的内容来收集一份可读的书。 我没有能够找到任何其它有问题的人,以及他们如何把这个问题固定下来,也许只是一个主人,但我需要知道所有情况。

我确信,在我看来,这一错误是某些地方的。

-(void)viewDidLoad {
    NSString *path = [[NSBundle mainBundle] pathForResource:@"datam" ofType:@"plist"];
    NSArray *array = [[NSArray alloc] initWithContentsOfFile:path];
    self.listData = array;
    [array release];


    [super viewDidLoad];
}

#pragma mark -
#pragma mark Table View Data Source Methods
- (NSInteger)tableView:(UITableView *)tableView
 numberOfRowsInSection:(NSInteger)section {
    return [self.listData count];
}

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


    static NSString *SimpleTableIdentifier = @"Identifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:Identifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SimpleTableIdentifier] autorelease];
    }

    NSUInteger row = [indexPath row];
    cell.textLabel.text = [listData objectAtIndex:row];
    return cell;
}
问题回答

我认为,“优待”办法应首先考虑。

NSString *path = [[NSBundle mainBundle] pathForResource:@"datam" ofType:@"plist"];
NSArray *array = [[NSArray alloc] initWithContentsOfFile:path];

这似乎有些奇怪;你的文件称“数据m.plist”吗?

3. 在您的法典中采用一些安全记录仪,以了解贵国在任何特定时间的地位:

NSLog(@"%@ has %i elements",ARRAY_OBJECT,[ARRAY_OBJECT count]);

在申请时,核对亚洲开发银行在XCode的产出,然后看结果是否与你预期的结果相符。

self.listData = array; [array release];

相反:

self.listData = [array copy]; [array release];

NSArray物体为指点器;当你自行确定。 名单 数据 = 阵列,你真心实意地告诉任何希望列入名单的人。 用于观察原来由阵列占据的记忆地址的数据。 当你放下阵列时,它打破了这一记忆地址,从而使点子毫无意义。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签