我只在iOS9中收到以下错误.
这是我的代码: -
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
if ([[NSUserDefaults standardUserDefaults] objectForKey:@"login_dict"])
{
if ([[NSUserDefaults standardUserDefaults] objectForKey:@"isLogout"] == nil || [[[NSUserDefaults standardUserDefaults] objectForKey:@"isLogout"] integerValue]== 0)
{
self.loginDict = [[BaseViewController sharedInstance] removeNullFromDictionary:[[NSUserDefaults standardUserDefaults] objectForKey:@"login_dict"]];
self.firstViewController = [[HomeViewController alloc] initWithNibName:@"HomeViewController" bundle:nil];
}
if ([[[NSUserDefaults standardUserDefaults] objectForKey:@"isLogout"] integerValue]== 1)
{
self.firstViewController = [[WelcomeViewController alloc] initWithNibName:@"WelcomeViewController" bundle:nil];
}
NSLog(@"Userinfo = %@",self.loginDict);
}
else
{
self.firstViewController = [[WelcomeViewController alloc] initWithNibName:@"WelcomeViewController" bundle:nil];
}
self.window.backgroundColor = [UIColor whiteColor];
[self.window …Run Code Online (Sandbox Code Playgroud) 我担心的是我没有在应用商店上传,但是当我点击深度链接 url 调试模式应用程序没有在 Appstore 上打开它的重定向
我是 ABLR 来重定向我的调试应用程序。
我正在研究动态链接目标 c
因为我已经测试过我的应用程序在 firebase 中配置良好
但是当我与其他用户分享我的产品时,他们点击了它在 safari 上的重定向并且链接不起作用
每次我必须将链接和过去复制到 chrome 中,而且在这里弹出你的应用程序打开另一个应用程序然后重定向到应用程序...
我希望当我点击链接时直接重定向到应用程序而不是 SAFARI 或手动复制该链接然后打开应用程序
注意:应用程序不可用,我想打开我的调试应用程序的 url。
我已经配置了获取 appstoreid 和 teamid 的应用程序
-(BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restoreHandler:
我的链接在 safari 中不起作用,但它在 chrome 上工作如何管理在 safari 上工作......
提前致谢。
objective-c ios firebase firebase-authentication firebase-dynamic-links