上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 22 下一页
摘要: 修改UISearchBar的输入框背景去除阴影,并设置成iOS7风格UITextField *searchField;NSUInteger numViews = [searchBar.subviews count];for(int i = 0; i < numViews; i++) { if(... 阅读全文
posted @ 2014-08-26 11:33 沙影无痕 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 通过设置background image 可以彻底改变UISearchBar 在iOS7下的背景(该方法适用iOS5及其以上) self.searchBar.backgroundImage = [UIImage imageNamed:@"back.png"];iOS6及之前版本下可以采... 阅读全文
posted @ 2014-08-26 10:49 沙影无痕 阅读(208) 评论(0) 推荐(0) 编辑
摘要: IOS7状态栏StatusBar官方标准适配方法hello,大家好,ios7正式版已经发布,相信大家都在以各种方式来适配ios7.如果你已经下载了xcode5,正准备使用,你会发现各种布局的改变.注定这段时间是忙的,是头疼的!原创在此哦http://my.csdn.net/rhljiayou这两天经... 阅读全文
posted @ 2014-08-13 09:13 沙影无痕 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 解决拍照按钮为英文问题。点击红框下面的加号,选择简体中文之后就可以。 阅读全文
posted @ 2014-08-06 19:54 沙影无痕 阅读(170) 评论(0) 推荐(0) 编辑
摘要: @interface UIImage (Color)+ (UIImage *)imageWithColor:(UIColor *)color size:(CGSize)size;@end@implementation UIImage (Color)+ (UIImage *)imageWithColo... 阅读全文
posted @ 2014-07-30 10:57 沙影无痕 阅读(828) 评论(0) 推荐(0) 编辑
摘要: #define IS_RETINA ([[UIScreen mainScreen] respondsToSelector:@selector(displayLinkWithTarget:selector:)] && ([UIScreen mainScreen].scale == 2.0)) 阅读全文
posted @ 2014-07-18 09:38 沙影无痕 阅读(282) 评论(0) 推荐(0) 编辑
摘要: Base64.h[cpp]view plaincopy////GTMBase64.h////Copyright2006-2008GoogleInc.////LicensedundertheApacheLicense,Version2.0(the"License");youmaynot//usethi... 阅读全文
posted @ 2014-07-14 17:03 沙影无痕 阅读(477) 评论(0) 推荐(0) 编辑
摘要: DES是一种分组数据加密技术(先将数据分成固定长度的小数据块,之后进行加密),速度较快,适用于大量数据加密用DES实现加密和解密的过程:(网络搜索后加以修改而来)DesEncry.h文件中:[cpp]view plaincopy+(NSString*)encryptWithText:(NSStrin... 阅读全文
posted @ 2014-07-14 16:58 沙影无痕 阅读(451) 评论(0) 推荐(0) 编辑
摘要: NSString *version =[NSStringstringWithFormat:@"%@",[[NSBundlemainBundle]objectForInfoDictionaryKey:(NSString*)kCFBundleVersionKey]]; 阅读全文
posted @ 2014-07-08 11:49 沙影无痕 阅读(174) 评论(0) 推荐(0) 编辑
摘要: - (BOOL)searchBar:(UISearchBar *)searchBar shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text { if (range.location >5){//限定只能输入... 阅读全文
posted @ 2014-06-13 16:23 沙影无痕 阅读(163) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 22 下一页