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;
}
}];High Performance JavaScript
Nicholas C. Zakas / O'Reilly Media / 2010-4-2 / USD 34.99
If you're like most developers, you rely heavily on JavaScript to build interactive and quick-responding web applications. The problem is that all of those lines of JavaScript code can slow down your ......一起来看看 《High Performance JavaScript》 这本书的介绍吧!


