All Versions
67
Latest Version
Avg Release Cycle
32 days
Latest Release
1206 days ago

Changelog History
Page 7

  • v0.6 Changes

    • โž• Added support for nibs(/xibs) use R.nib.[name].firstView to get the first view in your nib fully typed!
    • All reuse identifiers in your project (nibs and storyboards) are available under R.reuseIdentifier.[name]
    • โšก๏ธ We now leave the generated file untouched if there are no updates
    • ๐Ÿ— Errors in executing R.swift will now appear in between you Xcode build errors/warnings
    • UIViewController subclasses in your storyboard (like UINavigationController or UISplitviewController) are now correctly typed
    • Internal rewrite in the way we generate the R-struct
  • v0.5.1 Changes

    ๐Ÿš€ This release fixes an issue where not importing UIKit import can sometimes give compile errors.

  • v0.5 Changes

    Now you also can load view controllers from a Storyboard without using strings. You can access them with R.storyboard.[name].[viewControllerIdentifier]. They are even validated when you call R.validate()!

  • v0.4 Changes

    ๐Ÿš€ In this release a serie of improvements in the codebase as well as in the generated struct. The new resources can be accessed through:

    • UIImage: R.image.[imageName]
    • UIStoryboardSegue identifier: R.segue.[segueIdentifier]
    • UIStoryboard: R.storyboard.[storyboardName].instance
    • Validate images used in the given storyboard: R.storyboard.[storyboardName].validateImages()
    • Validate all images in all storyboards: R.validate()
  • v0.3 Changes

    R.swift now generated strongly typed segues and provides methods to validate if the images used in your storyboard do exist.

    • R.[storyboardName].[segueIdentifier] to get the identifier of a segue
    • โœ… R.validateStoryboardImages() to validate images in all storyboards
    • โœ… R.[storyboardName].validateStoryboardImages() to validate images in a single storyboard
  • v0.2 Changes

    ๐Ÿ‘ Better structure, better name, lots of breaking changes!

    • ๐Ÿ“‡ Renamed from TypedImages via Strongly to R.swift
    • ๐Ÿ”จ Refactored about all of the code
    • Now use R.[assetFolder].[imageName] instead of the UIImage.* approach
  • v0.1 Changes

    • ๐Ÿš€ First public release