摘要: if ([self.navigationController.navigationBarrespondsToSelector:@selector(setBackgroundImage:forBarMetrics:)]) { [self.navigationController.navigationBarsetBackgroundImage:[UIImageimageNamed:@"nav_bg.png"] forBarMetrics:UIBarMetricsDefault]; }[self.navigationController.navigationBarresponds 阅读全文
posted @ 2012-08-14 18:29 zander 阅读(227) 评论(0) 推荐(0)
摘要: ios判断用户设备: if (UI_USER_INTERFACE_IDIOM()==UIUserInterfaceIdiomPhone) { NSLog(@"Your dervice is phone!!"); }elseif (UI_USER_INTERFACE_IDIOM()==UIUserInterfaceIdiomPad) { NSLog(@"Your dervice is ipad!!"); }else{ NSLog(@"未识别您的设备......"); }设备类型 iphone 和 ipad --- 下边的枚举UIUser 阅读全文
posted @ 2012-08-14 18:26 zander 阅读(390) 评论(0) 推荐(0)