秒验 iOS端如何修改授权页背景

修改授权页背景为透明色
基于一键登录的拉起授权页功能,如果想要修改授权页的背景颜色,来调整成符合自己app样式的背景。以下代码示例主要介绍如何修改授权页的背景颜色,例如将授权页背景修改为透明色:

-(void)login
{
    //创建一个Ui配置对象
    SVSDKHyUIConfigure * Ui = [SVSDKHyUIConfigure new];
    Ui.currentViewController = self;

    //需要注意的是:要想将授权页设置为透明色需要设置modalPresentationStyle为UIModalPresentationOverFullScreen
    Ui.modalPresentationStyle = @(UIModalPresentationOverFullScreen);//Swift
中可以设置为iConfigure.modalPresentationStyle = 5

    [SVSDKHyVerify setDelegate:self];
    [SVSDKHyVerify openAuthPageWithModel:Ui openAuthPageListener:^(NSDictionary * _Nullable resultDic, NSError * _Nullable error) {

           if(error!=nil)
           {
               //拉起授权页失败
               NSLog(@"%@",error.description);
           }
           else
           {
               //拉起授权页成功

               NSLog(@"成功");

           }
       } cancelAuthPageListener:^(NSDictionary * _Nullable resultDic, NSError * _Nullable error) {
           //点击sdk自带返回,关闭,其他方式登录(添加的自定义关闭按钮事件不会触发此回调)
           NSLog(@"====%@",resultDic);
           NSLog(@"----%@",error.description);

       } oneKeyLoginListener:^(NSDictionary * _Nullable resultDic, NSError * _Nullable error) {
           //一键登录点击获取token回调
           //关闭页面,当Ui.manualDismiss = @(YES);时需要手动调用此方法关闭

          // [SVSDKHyVerify hideLoading];
           if (error==nil) {
               //获取token成功,开始调用token置换手机号接口
               NSLog(@"%@",resultDic);


               Ui.manualDismiss = @(YES);
               [SVSDKHyVerify finishLoginVcAnimated:YES Completion:^{
   //                SectionViewController * view = [[SectionViewController alloc] init];
   //                [self presentViewController:view animated:YES completion:^{
   //
   //                }];
               }];
           }
           else
           {
               //获取token失败,可以自定义跳转到其他界面
           }
       }];
}

-(void)svVerifyAuthPageViewDidLoad:(UIViewController *)authVC userInfo:(SVSDKHyProtocolUserInfo *)userInfo
{
    //授权页view
    UIView * authpage = authVC.view;

    //1.授权页背景设为透明或半透明,作为弹窗的背景蒙层
    authpage.backgroundColor = UIColor.clearColor;

    //后面代码可以自己作处理

    ```
}

修改授权页背景为图片
基于一键登录的拉起授权页功能,如果想要修改授权页的背景图片,来调整成符合自己app样式的背景。以下代码示例主要介绍如何修改授权页的背景图片,注意最后需要将背景图层置于所有图层最底部,具体实现如下:

-(void)login
{
    //创建一个Ui配置对象
    SVSDKHyUIConfigure * Ui = [SVSDKHyUIConfigure new];
    Ui.currentViewController = self;
    [SVSDKHyVerify setDelegate:self];
    [SVSDKHyVerify openAuthPageWithModel:Ui openAuthPageListener:^(NSDictionary * _Nullable resultDic, NSError * _Nullable error) {

           if(error!=nil)
           {
               //拉起授权页失败
               NSLog(@"%@",error.description);
           }
           else
           {
               //拉起授权页成功

               NSLog(@"成功");

           }
       } cancelAuthPageListener:^(NSDictionary * _Nullable resultDic, NSError * _Nullable error) {
           //点击sdk自带返回,关闭,其他方式登录(添加的自定义关闭按钮事件不会触发此回调)
           NSLog(@"====%@",resultDic);
           NSLog(@"----%@",error.description);

       } oneKeyLoginListener:^(NSDictionary * _Nullable resultDic, NSError * _Nullable error) {
           //一键登录点击获取token回调
           //关闭页面,当Ui.manualDismiss = @(YES);时需要手动调用此方法关闭

          // [SVSDKHyVerify hideLoading];
           if (error==nil) {
               //获取token成功,开始调用token置换手机号接口
               NSLog(@"%@",resultDic);


               Ui.manualDismiss = @(YES);
               [SVSDKHyVerify finishLoginVcAnimated:YES Completion:^{
   //                SectionViewController * view = [[SectionViewController alloc] init];
   //                [self presentViewController:view animated:YES completion:^{
   //
   //                }];
               }];
           }
           else
           {
               //获取token失败,可以自定义跳转到其他界面
           }
       }];
}
-(void)svVerifyAuthPageViewDidLoad:(UIViewController *)authVC userInfo:(SVSDKHyProtocolUserInfo *)userInfo
{
    //授权页view
    UIView * authpage = authVC.view;

    //设置背景图
    UIImageView * imageBg = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"background"]];
    imageBg.frame = CGRectMake(0, 0, authpage.bounds.size.width, authpage.bounds.size.height);
    [authpage addSubview:imageBg];

    UIButton * backButton = userInfo.backButton;//自带的backButton,在navBar上

    UIButton * loginButton = userInfo.loginButton;
    UIImageView * logoImageView  = userInfo.logoImageView;
    UILabel  * phoneLabel = userInfo.phoneLabel;
    UIButton * checkBox  = userInfo.checkBox;
    UITextView * privacyTextView = userInfo.privacyTextView;
    UILabel  * sloganLabel = userInfo.sloganLabel;

    //将背景图放置最底层
    imageBg.layer.zPosition = loginButton.layer.zPosition-1;

    //后面代码可以自己作处理

    ```
}

相关推荐

  1. iOS如何修改授权背景

    2024-07-10 13:12:06       12 阅读
  2. iOS授权添加自定义按钮

    2024-07-10 13:12:06       6 阅读
  3. 如何修改游戏中的ip地址

    2024-07-10 13:12:06       43 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-10 13:12:06       4 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-10 13:12:06       5 阅读
  3. 在Django里面运行非项目文件

    2024-07-10 13:12:06       4 阅读
  4. Python语言-面向对象

    2024-07-10 13:12:06       5 阅读

热门阅读

  1. 探索HTML5的设计原则:引领Web开发的未来方向

    2024-07-10 13:12:06       7 阅读
  2. hive 调优

    2024-07-10 13:12:06       8 阅读
  3. 精通C#编程需要学习哪些常用框架?

    2024-07-10 13:12:06       8 阅读
  4. Redis高可用解决方案哨兵模式与集群模式的比较

    2024-07-10 13:12:06       7 阅读
  5. C#实用的工具类库

    2024-07-10 13:12:06       10 阅读
  6. 4085行代码还原2D我的世界(上)

    2024-07-10 13:12:06       9 阅读
  7. 大数据面试题之GreenPlum(1)

    2024-07-10 13:12:06       10 阅读
  8. 量化机器人能否识别市场机会?

    2024-07-10 13:12:06       9 阅读
  9. 探讨SpringMVC的工作原理

    2024-07-10 13:12:06       10 阅读
  10. CSS布局艺术:掌握水平与垂直对齐的秘诀

    2024-07-10 13:12:06       7 阅读