iOS / OSX 创建项目帮助库 HelperLibrary
- 授权协议: Unspecified
- 开发语言: Objective-C
- 操作系统: OS X
- 软件首页: https://github.com/rondinellimorais/HelperLibrary
软件介绍
HelperLibrary 是一个静态库,可以帮你实现每次创建 iOS/OSX 项目时做的一些重复的工作。
基本用法
[[UtilHelper sharedInstance] internetConnectionNotification:^(NetworkStatus remoteHostStatus, BOOL isCurrentState) {
switch (remoteHostStatus) {
case NotReachable:
NSLog(@"no connection!");
break;
case ReachableViaWiFi:
NSLog(@"Connected via Wifi");
break;
case ReachableViaWWAN:
NSLog(@"Connected via mobile data");
break;
default:
break;
}
}];The NSHipster Fake Book (Objective-C)
Mattt Thompson / NSHipster Portland, Oregon / 2014 / USD 19.00
Fake Books are an indispensable tool for jazz musicians. They contain the melody, rhythm, and chord changes for hundreds of standards, allowing a player to jump into any session cold, and "fake it" th......一起来看看 《The NSHipster Fake Book (Objective-C)》 这本书的介绍吧!


