Carthage集成R.swift

常规情况下使用资源文件时代码调用:

let icon = UIImage(named: "settings-icon")
let font = UIFont(name: "San Francisco", size: 42)```

**潜在风险:**
1/资源名称拼写错误
2/项目资源很多检查拼写正确也是颇费时间
3/删除了一个资源文件,只能通过全局搜索资源名称来判断是否已经没有使用这个资源

**R.swift的优势:**

1/通过项目文件(Xcodeproj)来检测资源而不是通过扫描文件里的资源
2/支持多种资源类型
3/设计之初接口就希望接近苹果原生API,让你快速上手

---
##使用Carthage集成R.swift:
**1.Cartfile**
![Cartfile里面加入R.swift的git地址](http://upload-images.jianshu.io/upload_images/1706253-8da8eb0dd5ceff20.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
**2.Cartfile update**
```cd到Cartfile的目录,终端执行:Carthage update --platform ios```
**3.项目配置**
!["+"New Script phase](http://upload-images.jianshu.io/upload_images/1706253-770aa885c1df4927.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
**4.修改相关配置内容**
```下面的内容改成:"/usr/local/bin/rswift" "$SRCROOT"```
**5.生成"R.generated.swift"文件**
``` command+B,项目目录下会自动生成"R.generated.swift"文件,需要把这个文件拖到工程里面去 ```
![R.generated.swift](http://upload-images.jianshu.io/upload_images/1706253-33e760c0e5a8ceca.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
**6.为方便使用可以在项目Config中加入一些typealias,如下:**

/// R.string.localizable
typealias RLS = R.string.localizable
/// R.image
typealias RI = R.image
/// R.nib
typealias RN = R.nib
/// R.font
typealias RF = R.font

**7.使用方式:**

label.title = RLS.nav_title_HEXA()
label.font = RF.iconfont(size: 56)
imageView.image = RI.g_icon_yes()
let xxxController = xxxViewController(nib: RN.activeConnectViewController)

你可能感兴趣的:(Carthage集成R.swift)