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;
}
}];Learning JavaScript
Shelley Powers / Oreilly & Associates Inc / 2006-10-17 / $29.99
As web browsers have become more capable and standards compliant, JavaScript has grown in prominence. JavaScript lets designers add sparkle and life to web pages, while more complex JavaScript has led......一起来看看 《Learning JavaScript》 这本书的介绍吧!


