Releases: mac-cain13/R.swift
Releases · mac-cain13/R.swift
0.8.4
When using the assistant editor XCode will not sugged the R.generated.swift
file as a good place to add outlets and such.
0.8.3
- Fixes incorrectly generated code
0.8.2
- Fixes lowercase issue in previous release
0.8.1
- Spaces in image names are now supported
- Introduced
registerNibs
to register multiple nibs at once
0.8.0
This release adds features to use typed overloads of table- and collectionview methods:
registerNib
withR.nib.*
dequeueSomethingSomething(R.reuseIdentifier.*)
and get an object of the correct type returned
0.7.1
- R.swift now support asset catalog folders/groups
- Fix when using assets that have names that are Swift keywords, they are now properly escaped
0.7.0
- Rewrote codebase to Swift 1.2
- Added
R.storyboard.[name].initialViewController
to get the initial view controller from a storyboard - Added missing newline if using multiple storyboard
0.6.1
Fixed a bug where some files where skipped during search and not included in the R-struct. This is now fixed.
0.6.0
- 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 (likeUINavigationController
orUISplitviewController
) are now correctly typed- Internal rewrite in the way we generate the
R
-struct
0.5.1
This release fixes an issue where not importing UIKit import can sometimes give compile errors.