当前位置: 首页 > 工具软件 > WebAuth > 使用案例 >

ios菜鸟之路:新浪微博分享 sso与webAuth的转换

酆晔
2023-12-01

使用最新的新浪微博sdk进行开发时,如果iphone手机是6.0以上的系统时,可以直接调用sso新浪微博客户端。只需要在appdelegate中添加下边四个方法即可


- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    
    [self.sinaweibo applicationDidBecomeActive];
}

- (void)applicationWillTerminate:(UIApplication *)application
{
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
-(BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url{
    
    return  [self.sinaweibo handleOpenURL:url];
}
-(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation{
    
    return  [self.sinaweibo handleOpenURL:url];
    
}

 类似资料: