R.swift-優雅地引用項目資源

R.swift是一個高效引入iOS資源的框架,避免了使用字符串引入資源文件致使程序崩潰的尷尬。 目前R.swift支持到Swift4.0版本git

優點

使用代碼的方式來引入資源:github

  • 類型完整: 減小推斷和轉換方法返回值的類型
  • 編譯時檢查: 不會再由於不正確的字符串致使App產生運行時崩潰
  • 自動補全: 再也不須要輸入圖片名稱

示例:json

以前:swift

let image = UIImage(named: "imageName")
複製代碼

R.swift:框架

let image = R.image.imageName()
複製代碼

功能

使用R.swift以後,可使用R結構體來獲取資源文件。如若資源文件發生改變,R.swift會正確的清除\改變\增長資源。ide

R.swift目前支持以下幾種資源:ui

  • Images
  • Fonts
  • Resource files
  • Colors
  • Localized String
  • StoryBoard
  • Segues
  • Nibs
  • Reuseable cells

接入方式

CocoaPods

  1. 添加pod R.swiftPodfile文件中以後終端執行pod install
  2. Xcode配置:在當前項目的targets中選擇Build phrase,點擊+號選擇添加New Run Script Phase,
  3. Run Script移動至Compile sources之上,Check Pods Manifest.lock之下。在Run Script中添加:"$PODS_ROOT/R.swift/rswift" "$SRCROOT",
  4. 編譯你的項目,在Finder中你會看到R.generated.swiftPod文件中,將該文件拖動至項目中,切記千萬不要勾選Copy items if needed,
  5. 新增\刪除\修改資源文件以後都須要從新command+B編譯項目,保證正確引用。

使用方式

一、Images

以前:url

let png = UIImage(named: "png")
let jpg = UIImage(named: "jpg.jpg")
複製代碼

R.swift:spa

let png = R.image.png()
let jpg = R.imgae.jpgJpg()
複製代碼

二、Custom fonts

以前:code

let customFont = UIFont(name: "Acme-Light", size: 22)
複製代碼

R.swift:

let customFont = R.font.acmeLight(size: 22)
複製代碼

三、Resource files

以前 :

let jsonURL = Bundle.main.url(forResource: "seed-data", withExtension: "json")
let jsonPath = Bundle.main.path(forResource: "seed-data", ofType: "json")
複製代碼

R.swift:

let jsonURL = R.file.seedDataJson()
let jsonPath = R.file.seedDataJson.path()
複製代碼

四、Localized Strings

以前:

let welcomeMessage = NSLocalizedString("welcome.message", comment: "")
let settingsTitle = NSLocalizedString("title", tableName: "Settings", comment: "")
let welcomeName = String(format: NSLocalizedString("welcome.withName", comment: ""), locale: NSLocale.current, "Alice")
let progress = String(format: NSLocalizedString("copy.progress", comment: ""), locale: NSLocale.current, 4, 23)
複製代碼

R.swift:

let welcomeMessage = R.string.localizable.welcomeMessage()
let settingsTitle = R.string.settings.title()
let welcomeName = R.string.localizable.welcomeWithName("Alice")
let progress = R.string.localizable.copyProgress(completed: 4, total: 23)
複製代碼

五、Segues

以前:

performSegue(withIdentifier: "openSettings", sender: self)

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if let settingsController = segue.destination as? SettingsController,
       let segue = segue as? CustomSettingsSegue, segue.identifier == "openSettings" {
      segue.animationType = .LockAnimation
      settingsController.lockSettings = true
    }
  }
複製代碼

R.swift:

performSegue(withIdentifier: R.segue.overviewController.openSettings, sender: self)

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  if let typedInfo = R.segue.overviewController.openSettings(segue: segue) {
    typedInfo.segue.animationType = .LockAnimation
    typedInfo.destinationViewController.lockSettings = true
  }
複製代碼

六、Nibs

以前:

let nameOfNib = "CustomView"
let customViewNib = UINib(nibName: "CustomView", bundle: nil)
let rootViews = customViewNib.instantiate(withOwner: nil, options: nil)
let customView = rootViews[0] as? CustomView

let viewControllerWithNib = CustomViewController(nibName: "CustomView", bundle: nil)
複製代碼

R.swift:

let nameOfNib = R.nib.customView.name
let customViewNib = R.nib.customView()
let rootViews = R.nib.customView.instantiate(withOwner: nil)
let customView = R.nib.customView.firstView(owner: nil)

let viewControllerWithNib = CustomViewController(nib: R.nib.customView)
複製代碼

七、Reusable table view cells

UITableView

以前:

class FaqAnswerController: UITableViewController {
  override func viewDidLoad() {
    super.viewDidLoad()
    let textCellNib = UINib(nibName: "TextCell", bundle: nil)
    tableView.register(textCellNib, forCellReuseIdentifier: "TextCellIdentifier")
  }

  override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let textCell = tableView.dequeueReusableCell(withIdentifier: "TextCellIdentifier", for: indexPath) as! TextCell
    textCell.mainLabel.text = "Hello World"
    return textCell
  }
}
複製代碼

R.swift:

class FaqAnswerController: UITableViewController {
  override func viewDidLoad() {
    super.viewDidLoad()
    tableView.register(R.nib.textCell)
  }

  override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let textCell = tableView.dequeueReusableCell(withIdentifier: R.nib.textCell.identifier, for: indexPath)!
    textCell.mainLabel.text = "Hello World"
    return textCell
  }
}
複製代碼

UICollectionView

以前:

class RecentsController: UICollectionViewController {
  override func viewDidLoad() {
    super.viewDidLoad()
    let talkCellNib = UINib(nibName: "TalkCell", bundle: nil)
    collectionView?.register(talkCellNib, forCellWithReuseIdentifier: "TalkCellIdentifier")
  }

  override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "TalkCellIdentifier", for: indexPath) as! TalkCell
    cell.configureCell("Item \(indexPath.item)")
    return cell
  }
}
複製代碼

R.swift:

class RecentsController: UICollectionViewController {
  override func viewDidLoad() {
    super.viewDidLoad()
    collectionView?.register(R.nib.talkCell)
  }

  override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: R.reuseIdentifier.talkCell, for: indexPath)! // 此處跟tableView的使用方式仍是有很大區別
    cell.configureCell("Item \(indexPath.item)")
    return cell
  }
}
複製代碼

相關連接

github.com/mac-cain13/…

相關文章
相關標籤/搜索