我正在创建一个只有登录屏幕(MyViewController)的小型库,在目标c中。此屏幕应该使用密码并使用该库将其发送回应用程序。
@implementation MyViewController
- (id)init {
NSBundle *bundle = [NSBundle bundleWithURL:[[NSBundle mainBundle] URLForResource:@"MyLibraryResources" withExtension:@"bundle"]];
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"Main" bundle:bundle];
if ((self = [sb instantiateViewControllerWithIdentifier:@"nav"])) {
}
count=0;
return self;
}
现在我在我的应用程序appdelegate中将此登录屏幕设置为根视图控制器,该应用程序正在实现该库。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor whiteColor];
viewController = [[MyViewController alloc] init];
self.window.rootViewController = viewController;
[self.window makeKeyAndVisible];
return YES;
// Override point for customization after application launch.
}
我不知道如何将数据/密码从我的库视图控制器发送回应用程序appdelegate。
任何帮助或教程都会有很大的帮助。