博主:易飞扬
原文链接 : http://www.yifeiyang.net/iphone-development-skills-of-the-private-api-4-uibarbuttonitem/
转载请保留上面文字。
今天介绍一下 UIBarButtonItem 的特殊用法。
如上所示,UIBarButtonSystemItem 的 100 ~ 110 就是系统提供的一些未公开的标准icon。
NSMutableArray *items = [NSMutableArray array];
UIBarButtonItem *item = nil;
for (int i = 100; i <= 109; i++) {
item = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:i target:nilaction:nil];
item.style = UIBarButtonItemStyleBordered;
[items addObject:item];
[item release];
}
item = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:110 target:nil action:nil];
item.style = UIBarButtonItemStylePlain;
[items addObject:item];
[item release];
toolbar.items = items;
分享到:
相关推荐
安卓app开发项目-我也模仿了Path效果,效果更接近iphone(源码).zip安卓app开发项目-我也模仿了Path效果,效果更接近iphone(源码).zip安卓app开发项目-我也模仿了Path效果,效果更接近iphone(源码).zip安卓app开发...
2. **App Store**:IPhone上的应用商店,用户可以在这里下载和更新应用程序。通过Apple ID登录,可以购买付费应用,下载已购应用,并管理应用内购买。 3. **Safari**:IPhone内置的浏览器,支持用户浏览网页、保存...
2. 在设置书签的时候,可以使用”apple-touch-icon” href=”iphon_tetris_icon.png”/>来显示好看的图标。 3. 离线应用的另一个技巧是使用”apple-mobile-web-app-capable” content=”yes” />来实现离线应用。 ...
### iPhone开发秘笈 #### 第1章:iPhone SDK简介 **1.1 苹果公司的iPhone SDK** 苹果公司的iPhone SDK(Software Development Kit)是开发者用于创建iOS应用的主要工具集。它包含了开发、测试以及调试iOS应用程序...
创建离线iPhone Web App是一种巧妙的方式,可以让你的应用程序在没有网络连接的情况下仍然能够运行。这个过程涉及到HTML5的一些关键特性,特别是应用程序缓存(App Cache),这使得Web App可以存储必要的资源以便...
- `<link rel="apple-touch-icon" href="iphon_tetris_icon.png"/>` 可以设置在添加书签时显示的图标。 - `<meta name="apple-mobile-web-app-capable" content="yes"/>` 表示应用可以作为离线应用运行。 - `...
2 设备:iphone4(ios 6.1.3),iphone5(ios 7),ipad2 (ios6.1) 2 播放器:vlc 播放器 希望对初学者及做像会议系统,视频聊天的童鞋有帮助。另外,代码中也包含采集摄像头图像,变为流媒体的功能,详细参见代码。
* app/web page 设置:”apple-touch-icon” href=”iphon_tetris_icon.png”/> 在设置书签的时候可以显示好看的图标。 * ”apple-mobile-web-app-capable” content=”yes” /> 离线应用的另一个技巧。 * ”apple-...
iPhone里面软件安装多了就会经常要升级,导致App Store图标右上角出现红色数字提示,十分扎眼。如果你不想升级的话要怎么消除掉这个数字提醒呢?其实通过一些简单的设置就可解决了,进入手机的"设置"-"通用"-"访问...
- `<link rel="apple-touch-icon" href="iphon_tetris_icon.png" />`用于在添加到主屏幕时显示自定义图标。 - `<meta name="apple-mobile-web-app-capable" content="yes" />`使应用支持离线使用。 - `...