iOS 广告组件 CJPAdController
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/chrisjp/CJPAdController
- 软件文档: https://github.com/chrisjp/CJPAdController
软件介绍
CJPAdController 是个为应用提供简单方法来添加 iAd 和 Google AdMob 广告的控件。
示例代码:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
RootViewController *rootVC = [[RootViewController alloc] init];
_navController = [[UINavigationController alloc] initWithRootViewController:rootVC];
_adController = [[CJPAdController sharedManager] initWithContentViewController:_navController];
self.window.rootViewController = _adController;
[self.window makeKeyAndVisible];
return YES;
}
Web Caching
Duane Wessels / O'Reilly Media, Inc. / 2001-6 / 39.95美元
On the World Wide Web, speed and efficiency are vital. Users have little patience for slow web pages, while network administrators want to make the most of their available bandwidth. A properly design......一起来看看 《Web Caching》 这本书的介绍吧!
