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;
}
C++标准程序库
[德] Nicolai M. Josuttis / 侯捷、孟岩 / 华中科技大学出版社 / 2002-9 / 108.00元
这本包含最新资料的完整书籍,反映出被ANSI/ISO C++语言标准规格书纳入的C++标准程序库的最新组成。更明确地说,这本书将焦点放在标准模板库身上,检验其中的容器、迭代器、仿函数和算法。读者还可以找到特殊容、字串、数值类别、国际化议题、IOStream。每一个元素都有深刻的呈现,包括其介绍、设计、运用实例、细部解说、陷阱、意想不到的危险,以及相关类别和函数的精确樯记式和定义式。一起来看看 《C++标准程序库》 这本书的介绍吧!
