zoukankan      html  css  js  c++  java
  • xcode升级到8.1

    一、JPush集成:
    
        1、 xcode7在iOS10以上的真机上运行接收不到通知的问题,把xcode升级到8.1,在build phases -> link binary with libraries中添加UserNotifications.framework  
        2、 在Capabilities中将Push Notifications中的两个选项都勾选上。其他的按照极光文档按部就班。
    
    二、iOS10 扫描二维码程序崩溃问题

    在info.plist文件中添加

    
        <key>NSCameraUsageDescription</key>
        <string>cameraDesciption</string>
        
        <key>NSContactsUsageDescription</key>
        <string>contactsDesciption</string>
        
        <key>NSMicrophoneUsageDescription</key>
        <string>microphoneDesciption</string>
        
        <key>NSPhotoLibraryUsageDescription</key>
        <string>此App需要您的同意才能读取媒体资料库</string>
    
    
  • 相关阅读:
    1_Selenium环境搭建
    python functools
    python 参数注解inspect
    python 堆排序
    python functools
    python 装饰器
    python 柯里化
    python 高阶函数
    python 树
    python 函数销毁
  • 原文地址:https://www.cnblogs.com/wust-zxl/p/6073810.html
Copyright © 2011-2022 走看看