美文网首页
XCode开发各种路径获取

XCode开发各种路径获取

作者: Suger_森 | 来源:发表于2019-01-21 14:38 被阅读11次
    模拟器的位置:
    /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
    
    文档安装位置:
    /Applications/Xcode.app/Contents/Developer/Documentation/DocSets
    
    插件保存路径:
    ~/Library/ApplicationSupport/Developer/Shared/Xcode/Plug-ins
    
    自定义代码段的保存路径:
    ~/Library/Developer/Xcode/UserData/CodeSnippets/
    

    如果找不到CodeSnippets文件夹,可以自己新建一个CodeSnippets文件夹。

    证书路径
    ~/Library/MobileDevice/Provisioning Profiles
    

    获取 iOS 路径的方法

    获取家目录路径的函数
    NSString *homeDir = NSHomeDirectory();
    
    获取Documents目录路径的方法
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *docDir = [paths objectAtIndex:0];
    
    获取Documents目录路径的方法
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    NSString *cachesDir = [paths objectAtIndex:0];
    
    获取tmp目录路径的方法:
    NSString *tmpDir = NSTemporaryDirectory();
    

    相关文章

      网友评论

          本文标题:XCode开发各种路径获取

          本文链接:https://www.haomeiwen.com/subject/gwscjqtx.html