zoukankan      html  css  js  c++  java
  • 【iOS】swift-Binary operator '|' cannot be applied to two UIViewAutoresizing operands

    let view = UIView(frame: CGRect(x: 0, y: 0,  320, height: 568))
    addSubview(view)
    

    view.autoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight

    会报以下错误:

    Binary operator '|' cannot be applied to two UIViewAutoresizing operands

    更改为:

    view.autoresizingMask = [.FlexibleWidth, .FlexibleHeight]
    即可解决
    但是在极光推送中遇到同样问题后,这样并不行
    
    原OC代码:

          [JPUSHService registerForRemoteNotificationTypes:(UIUserNotificationTypeBadge |

                                                            UIUserNotificationTypeSound |

                                                            UIUserNotificationTypeAlert)

                                                categories:nil];

    转为swift
            JPUSHService.registerForRemoteNotificationTypes(UIUserNotificationType.Badge.rawValue | UIUserNotificationType.Sound.rawValue | UIUserNotificationType.Alert.rawValue, categories: nil)
    就是swift 和 OC 在枚举上的区别导致的

    
    
    
    

  • 相关阅读:
    数据库完整性约束
    系统介绍
    全栈性能测试修炼宝典--Jmeter实战(一)
    数据驱动(四)
    数据驱动(五)
    数据驱动(三)
    数据驱动(二)
    数据驱动(一)
    Robot Framework 三种测试用例模式
    sublime text---注释
  • 原文地址:https://www.cnblogs.com/melons/p/5791981.html
Copyright © 2011-2022 走看看