内にあるNSString
fromにアクセスしたい。AppDelegate.m
ViewController.m
私はSingle View Applicationを持っNSString
ています。applicationDidEnterBackground:
AppDelegate.m
はNSString
内ViewController.m
にあり、 では宣言されていませんAppDelegate.m
。
私はそれを宣言してからAppDelegate.h
アクセスしようとしましたViewController.m
(そして逆に)。
ViewController.h
:
@interface MyAppViewController : UIViewController {
NSString *MyString;
}
AppDelegate.m
:
- (void)applicationDidEnterBackground:(UIApplication *)application {
NSUserDefaults * defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:MyString forKey:@"SavedString"];
[defaults synchronize];
}