zoukankan      html  css  js  c++  java
  • 记录专用

    
    
    • 在 bash 里,使用 Ctrl-R 而不是上下光标键来查找历史命令。
    
    
    • 在 bash里,使用 Ctrl-W 来删除最后一个单词,使用 Ctrl-U 来删除一行。


    iOS10适配
    <!-- 相册 --> 
    <key>NSPhotoLibraryUsageDescription</key> 
    <string>App需要您的同意,才能访问相册</string> 

    <!-- 媒体资料库 -->
    <key>NSAppleMusicUsageDescription</key> 
    <string>App需要您的同意,才能访问媒体资料库</string>
    <!-- 相机 --> 
    <key>NSCameraUsageDescription</key> 
    <string>App需要您的同意,才能访问相机</string> 
    <!-- 麦克风 --> 
    <key>NSMicrophoneUsageDescription</key> 
    <string>App需要您的同意,才能访问麦克风</string> 
    <!-- 位置 --> 
    <key>NSLocationUsageDescription</key> 
    <string>App需要您的同意,才能访问位置</string> 
    <!-- 在使用期间访问位置 --> 
    <key>NSLocationWhenInUseUsageDescription</key> 
    <string>App需要您的同意,才能在使用期间访问位置</string> 
    <!-- 始终访问位置 --> 
    <key>NSLocationAlwaysUsageDescription</key> 
    <string>App需要您的同意,才能始终访问位置</string> 
    <!-- 日历 --> 
    <key>NSCalendarsUsageDescription</key> 
    <string>App需要您的同意,才能访问日历</string> 
    <!-- 提醒事项 --> 
    <key>NSRemindersUsageDescription</key> 
    <string>App需要您的同意,才能访问提醒事项</string> 
    <!-- 运动与健身 --> 
    <key>NSMotionUsageDescription</key> <string>App需要您的同意,才能访问运动与健身</string> 
    <!-- 健康更新 --> 
    <key>NSHealthUpdateUsageDescription</key> 
    <string>App需要您的同意,才能访问健康更新 </string> 
    <!-- 健康分享 --> 
    <key>NSHealthShareUsageDescription</key> 
    <string>App需要您的同意,才能访问健康分享</string> 
    <!-- 蓝牙 --> 
    <key>NSBluetoothPeripheralUsageDescription</key> 
    <string>App需要您的同意,才能访问蓝牙</string> 
    
    
    
    



    github oc 今日热门
    https://github.com/trending?l=objective-c

    https://github.com/kasketis/netfox
    https://github.com/cjwirth/awesome-ios-ui
    https://github.com/allenwong/30DaysofSwift
    https://github.com/danielgindi/ios-charts

     http://blog.csdn.net/tonny_guan/article/details/47748537

    刷新 DNS

    sudo dscacheutil -flushcache;sudo killall -HUP mDNSResponder;say flushed

    pod install 提速

    pod install --no-repo-update --verbose

     iOS9网络适配加入字段

    NSAppTransportSecurity
    
    NSAllowsArbitraryLoads

     pch位置

    $(SRCROOT)/test.pch

    mrc编译

    -fno-objc-arc

     新界面指导,引导用户尽快知道新功能在哪里

    https://github.com/ephread/Instructions

    安卓资源收藏:http://dcloud.io/hellomui/

    定义 动画时间时

    static const NSTimeInterval showOrHideCountryView = 0.3;/**< 显示与隐藏区域选择view的动画时长 */

     

  • 相关阅读:
    CPU密集型、IO密集型
    打印在一行
    python多线程、线程锁
    WPS--world使用格式刷
    pycharm连接linux版python
    Pycharm连接windows上python
    一台windows主机上运行2个tomcat
    启动django应用报错 “Error: [WinError 10013] 以一种访问权限不允许的方式做了一个访问套接字的尝试。”
    ORA-03206,当表空间不够时,如何以添加数据文件的方式扩展表空间
    利用拷贝data目录文件的方式迁移mysql数据库
  • 原文地址:https://www.cnblogs.com/songxing10000/p/5012609.html
Copyright © 2011-2022 走看看