Maison  >  Questions et réponses  >  le corps du texte

objective-c - UITableView无法无法显示在屏幕中

如下代码有什么问题吗?
我无法将数据显示在模拟器上,怎么办?

import "ViewController.h"

import "ZYStatus.h"

@interface ViewController ()
@property(nonatomic,strong)NSArray *status;
@end

@implementation ViewController

-(NSArray *)status
{

if (_status == nil) {
    _status = [ZYStatus array];
}
return _status;

}

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

return [self.status count];

}

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

NSLog(@"13");
static NSString *cellId  = @"cellId";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId];
if (cell == nil)
{
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellId];
}

ZYStatus *status1 = self.status[indexPath.row];
cell.textLabel.text = status1.name;
return cell;

}
@end

import <Foundation/Foundation.h>

@interface ZYStatus : NSObject

@property(nonatomic,copy)NSString *text;
@property(nonatomic,copy)NSString *icon;
@property(nonatomic,copy)NSString *name;
@property(nonatomic,copy)NSString *picture;
@property(nonatomic,assign) BOOL vip;

-(instancetype)initWithDict:(NSDictionary *)dict;
+(instancetype)statusWithDict:(NSDictionary *)dict;
+(NSArray *)array;

@end

import "ZYStatus.h"

@implementation ZYStatus

-(instancetype)initWithDict:(NSDictionary *)dict
{

self = [super init];
if (self) {
    [self setValuesForKeysWithDictionary:dict];
}
return self;

}
+(instancetype)statusWithDict:(NSDictionary *)dict
{

return [[self alloc] initWithDict:dict];

}

+(NSArray *)array
{


NSArray *array1 = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"statuses.plist" ofType:nil]];
NSMutableArray *arrayM;
for (NSDictionary *dict in array1)
{
[arrayM addObject:[self statusWithDict:dict]];
}
return arrayM;

}

@end

阿神阿神2710 Il y a quelques jours569

répondre à tous(2)je répondrai

  • 给我你的怀抱

    给我你的怀抱2017-04-25 09:05:45

    NSArray *array1 = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"statuses" ofType:“plist”]];

    répondre
    0
  • 给我你的怀抱

    给我你的怀抱2017-04-25 09:05:45

    NSArray *array1 = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"statuses" ofType:"plist"]];
    Lors de l'analyse du fichier, pathForResource est suivi du nom de fichier "statuses", ofType Il est suivi du suffixe de fichier "plist"

    répondre
    0
  • Annulerrépondre