Search code examples
iphonedelegatesuiapplicationdelegate

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...


Solution

  • 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.