tternes / BTToolkit

A collection of useful tools for Mac and iOS projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BTToolkit

A collection of useful tools for Mac and iOS projects. XCTestCases are included whenever possible.

UIColor+BTColorExtensions

Convert web/hex colors to UIColor

+ (UIColor *)bt_colorWithHexString:(NSString *)hex;

Grab RGB components from colors

- (CGFloat)bt_redComponent;
- (CGFloat)bt_greenComponent;
- (CGFloat)bt_blueComponent;

BTINIParser

Parse .ini files:

a=b
c=d
e=f

[car]
engine = v8 ;vrrrooom!
transmission = auto
wheels = 4

[pluto]
sky = dark
grass = none
sun = cold

Retrieve values in sections:

[self.ini valueForName:@"a" inSection:nil] => @"b"
[self.ini valueForName:@"engine" inSection:@"car"] => @"v8"
[self.ini valueForName:@"sun" inSection:@"pluto"] => @"cold"

License

The MIT License (MIT)

Copyright (c) 2014 Thaddeus Ternes

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A collection of useful tools for Mac and iOS projects


Languages

Language:Objective-C 100.0%