int index = (int)[[self.navigationController viewControllers]indexOfObject:self];
[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:(index -2)] a...
分类:
移动开发 时间:
2015-08-21 17:13:41
阅读次数:
196
1.在AppDelegate.m中引用#import "RootViewController.h"- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launch...
分类:
移动开发 时间:
2015-08-19 22:48:51
阅读次数:
164
全屏滑动代码实现12345678910111213141516171819202122232425-(void)viewDidLoad{[superviewDidLoad];//获取系统自带滑动手势的target对象idtarget=self.interactivePopGestureRecogni...
分类:
移动开发 时间:
2015-08-11 11:33:06
阅读次数:
144
地图与定位标签(空格分隔): UI补充地图与定位在移动互联网时代我们可以去依靠手机上的地图导航区陌生的地方,也可用利用团购的app搜索最近的找餐馆、找酒店、找银行、找电影院……。
- LBS :Location Based Service
- SoLoMo :Social Local Mobile(索罗门)
上面的功能都都用到了地图和定位功能,在iOS开发中,要想加入这2大功能...
分类:
其他好文 时间:
2015-08-08 00:06:47
阅读次数:
287
设置一张透明图片:nav_bargound.png//导航栏背景[self.navigationController.navigationBarsetBackgroundImage:[UIImageimageNamed:@"nav_bargound.png"]forBarMetrics:UIBar....
分类:
移动开发 时间:
2015-08-07 10:58:31
阅读次数:
493
(1)如果是使用系统导航栏则设置其translucent属性即可:[self.navigationController.navigationBarsetBackgroundImage:[UIImagenew]forBarMetrics:UIBarMetricsDefault];self.navigationController.navigationBar.shadowImage=[UIImagenew];self.navigationController.navigati..
分类:
移动开发 时间:
2015-08-06 18:50:48
阅读次数:
1522
简单的实现,从一点到iOS模拟器上设置的自己位置坐标的导航1>反地理编码2>导航#import "ViewController.h"#import @interface ViewController ()@end@implementation ViewController- (void)viewDi...
分类:
移动开发 时间:
2015-08-03 22:32:21
阅读次数:
122
SDK组成
百度iOS导航SDK由四部分组成:baiduNaviSDK.bundle资源包,libbaiduNaviSDK.a静态库,头文件,BaiduStatistics。baiduNaviSDK.bundle资源包由导航所需的配置数据、基础数据,以及导航功能所需的图片资源组成。libbaiduNaviSDK.a静态库,提供导航功能、线径规划、巡航等功能。头文件是libbaiduNaviS...
分类:
其他好文 时间:
2015-08-03 19:15:39
阅读次数:
173
猫猫分享,必须精品原创文章,欢迎转载。转载请注明:翟乃玉的博客
地址:http://blog.csdn.net/u013357243一:效果第二篇里面写了怎样自定义navigation实现自定义的导航控制器左右按钮样式,但是当我们自己实现后,系统自带的向右边滑动来实现回退的功能就不能用了。 这里主要实现滑动回退功能
。
二:代码实现思路首先 在 NYNavigationController.m...
分类:
移动开发 时间:
2015-07-30 15:01:35
阅读次数:
218
【状态栏】
在Xcode5以前,状态栏是通过UIApplication单例来管理的,而在此后,默认情况下状态栏通过控制器来管理,而且如果控制器有NavigationController,那么设置状态栏的操作在NavigationController中进行,调用的方法为:
- (UIStatusBarStyle)preferredStatusBarStyle;
如果要让状态栏仍然通过单例设定,...
分类:
其他好文 时间:
2015-07-05 16:43:37
阅读次数:
79