简体   繁体   中英

data between Views UIApplication

i want to share data between views...

i have the appdelegate of tabbar application:

myappdelegate.h

#import <UIKit/UIKit.h>

@interface myappdelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
    UIWindow *window;
    UITabBarController *tabBarController;
    NSString  *result;
}


@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;

@property (copy , readwrite) NSString *result;


@end

if i want to call with this command, there is the hint: "may not respond"....

   myappdelegate *dataCenter = [(myappdelegate *)[UIApplication sharedApplication] delegate];  <<may not respond
   dataCenter.result = @"msg";

result_view *resultView = [[result_view alloc] initWithNibName:@"result_view" bundle:nil];
[self.navigationController pushViewController:resultView animated:YES];
[resultView release];

result_view.m

- (void)viewDidLoad
{
    myappdelegate *dataCenter = (myappdelegate*)[[UIApplication sharedApplication]delegate];

    [label setText:dataCenter.result];
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
}

the program crashes...

Your code is saying that the sharedApplication is of the class myappdelegate , which indeed does not respond to delegate . Do this:

(myappdelegate *)[[UIApplication sharedApplication] delegate];

to remove the warning.


Due to Objective-C's runtime messaging, your current (warning-generating) code won't crash the app. The crash lies somewhere else.

Your first line should be

myappdelegate *dataCenter = (myappdelegate *)[[UIApplication sharedApplication] delegate];

As for the second line, I can't tell what you expect to happen. You don't have a result_array property on your myappdelegate class, so of course you can't set that property.

If you were trying to set the result property, you should have written

dataCenter.result = @"msg";

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM