ios - Obj-C UITable 未填充 MutableArray

标签 ios objective-c uitableview nsmutablearray

我有一个在应用程序启动时加载的数组,它获取正确的数据并填充该数组,但是一旦我进入 tableviewcontroller,它就会说该数组为空。

这是我获取数据的地方

AppDelegate.h

@interface AppDelegate : UIResponder <UIApplicationDelegate>
{
    NSMutableArray *tableDicsArrayTickets;
    NSMutableArray *dictionaryStack;
    NSMutableString *textInProgress;
    NSError *errorPointer;
}
@property (strong, nonatomic) NSMutableArray *tableDicsArrayTickets;
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) NSString *photo_URL;
+(NSDictionary *)dictionaryForXMLData:(NSData *)data error:(NSError **)errorPointer;
+(NSDictionary *)dictionaryForXMLString:(NSString *)string error:(NSError **)errorPointer;
+(AppDelegate *) getInstance; 

AppDelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{

    self.tableDicsArrayTickets = [[NSMutableArray alloc] init];

    NSURLSessionConfiguration *defaultConfigObject = [NSURLSessionConfiguration defaultSessionConfiguration];

    NSURLSession *defaultSession = [NSURLSession sessionWithConfiguration:defaultConfigObject delegate:nil delegateQueue:[NSOperationQueue mainQueue]];

    NSURL *url = [NSURL URLWithString:@"http://MYURLexample.php"];

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];

    NSString *deviceCode = [[[UIDevice currentDevice] identifierForVendor] UUIDString];

    NSString *post = [[NSString alloc] initWithFormat:@"parameter=%@", deviceCode];

    [request setHTTPMethod:@"POST"];
    [request setHTTPBody:[post dataUsingEncoding:NSUTF8StringEncoding]];

    NSURLSessionDataTask *dataTask = [defaultSession dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
        NSLog(@"Response:%@ %@\n", response, error);
        if(error == nil)
        {
            NSString *text =[[NSString alloc] initWithData: data encoding: NSUTF8StringEncoding];

            NSLog(@"Data = %@",text);

            NSDictionary *dics = [[NSDictionary alloc]initWithDictionary:[AppDelegate dictionaryForXMLString:text error:nil]];

            NSLog(@"dics is %@", dics);
            [self.tableDicsArrayTickets addObject:[[dics valueForKey:@"response"] valueForKey:@"text"]];
            NSLog(@"Array2 is %@", self.tableDicsArrayTickets);

        }
    }];
    [dataTask resume];

ViewController.h

@interface HistoryViewController : UIViewController<UITableViewDataSource, UITableViewDelegate>
{
    AppDelegate *mainDelegate;
}
@property (strong, nonatomic) AppDelegate *mainDelegate;

ViewController.m

#pragma
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [mainDelegate.tableDicsArrayTickets count];
}


-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 60;
}

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

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

    NSMutableArray *array = mainDelegate.tableDicsArrayTickets;
    NSString *cellIdentifier = @"Cell";

    PhotoTableViewCell *cell = (PhotoTableViewCell *) [tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    if(cell == nil)
    {
        cell = [[PhotoTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];


    }
    NSLog(@"Array is %@", [[array objectAtIndex:indexPath.row] objectForKey:@"text"]);
    cell.ticketNumber.text = [[array objectAtIndex:indexPath.row] objectForKey:@"text"];
    return cell;
}

我在获取数组数据时没有遇到问题,只是当我最终进入带有表的 View Controller 时,数组变为空。

最佳答案

我认为你做错了很多事情......

第一:

// AppDelegate.h

@interface AppDelegate : UIResponder <UIApplicationDelegate>
{
    // this should NOT be here
    NSMutableArray *tableDicsArrayTickets;

    NSMutableArray *dictionaryStack;
    NSMutableString *textInProgress;
    NSError *errorPointer;
}
@property (strong, nonatomic) NSMutableArray *tableDicsArrayTickets;
// ...

这应该会给你一个编译警告:

autosynthesized property 'tableDicsArrayTickets' will use synthesized instance
variable '_tableDicsArrayTickets', not existing instance variable 'tableDicsArrayTickets'

相同:

//HistoryViewController.h

@interface HistoryViewController : UIViewController<UITableViewDataSource, UITableViewDelegate>
{
    // this should NOT be here
    AppDelegate *mainDelegate;
}
@property (strong, nonatomic) AppDelegate *mainDelegate;

这应该给你:

autosynthesized property 'mainDelegate' will use synthesized instance 
variable '_mainDelegate', not existing instance variable 'mainDelegate'

然后,您没有在 HistoryViewController.m 中显示此内容(可能应该在 viewDidLoad() 中):

_mainDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];

关于ios - Obj-C UITable 未填充 MutableArray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55764220/

相关文章:

iphone - 太多的 glDrawElements 导致低 fps? OpenGL ES1.1 ( iPhone )

ios - 我怎么能不使用原型(prototype)单元标识符重用单元 BUT

ios - 核心数据模式设计

ios - 一些不需要的 UIImageViews 在尝试将它们设置为 UITableView 的边框时消失

ios - 更改高度时,UITextView 的 textContainer 在错误的帧呈现

ios - 如何检测静态 TableView 中的单元格并使用 segue

xcode - iOS 8 自动调整单元格大小 - 允许零高度

objective-c - UIApplicationDelegate 未在 Unity3d 生成的 Xcode AppDelegate 文件中调用

objective-c - 把很长的 NSString 剪掉一部分

objective-c - UIButtonTypeRoundedRect 类型的 iOS UIButton 显示幻影按钮?