TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Mar 2017 |
Maintained by richardlee.
Thomas is a Library for opening settings page and sub pages on iOS 8+ in Objective-C
Objective-C:
#import <RDThomas/RDThomas.h>
...
[RDThomas openPage:RDSysPageWifi completionHandler:^(BOOL aSuccess) {
}];
Swift:
import RDThomas
...
RDSwiftThomas.openPage(RDSysPageWifi) { (aSuccess) in
print(aSuccess)
}
There are three ways to use SDWebImage in your project:
platform :ios, '8.0'
pod 'RDThomas'
If you are using Swift, be sure to add use_frameworks!
and set your target to iOS 8+:
platform :ios, '8.0'
use_frameworks!
github "RichardLeeH/Thomas"
In the source files where you need to use the library, import the header file:
objective-c
#import <RDThomas/RDThomas.h>
Swift:
import RDThomas
All source code is licensed under the MIT License.