上一页 1 ··· 3 4 5 6 7
摘要: //保存-(void)saveToUserDefaults:(NSString*)tosaveedStringwithKey:(NSString*)tosaveedKey{ NSUserDefaults*tmp=[NSUserDefaultsstandardUserDefaults]; if(t... 阅读全文
posted @ 2014-05-21 15:43 韦韦韦 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 第三方库WebViewJavascriptBridgehttp://blog.csdn.net/zhaoxy_thu/article/details/22794201Demo 阅读全文
posted @ 2014-05-21 12:49 韦韦韦 阅读(120) 评论(0) 推荐(0) 编辑
摘要: http://www.cocoachina.com/applenews/devnews/2014/0520/8485.htmlhttp://blog.csdn.net/totogo2010/article/details/8010231 阅读全文
posted @ 2014-05-21 09:21 韦韦韦 阅读(136) 评论(0) 推荐(0) 编辑
摘要: NSArray *viewControllers = self.navigationController.viewControllers;A *viewController = [viewControllers objectAtIndex:[viewControllers count] - 2 ]; 阅读全文
posted @ 2014-05-17 13:42 韦韦韦 阅读(416) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/hwj2012/article/details/7883711相关:http://blog.csdn.net/xufeidll/article/details/24022261http://www.2cto.com/kf/201404/294059.html... 阅读全文
posted @ 2014-05-09 14:27 韦韦韦 阅读(361) 评论(0) 推荐(0) 编辑
摘要: iOS终端请求服务端数据时,为了保证数据安全,我们一般会使用https协议加密,而对于iOS的网络编程,我们一般会使用开源框架:ASIHTTPRequest,但是如果使用传统的http方式,即使忽略验证的话,程序也会报[error-9844]的错误,具体错误如下描述:【Error Domain=AS... 阅读全文
posted @ 2014-05-05 13:57 韦韦韦 阅读(691) 评论(0) 推荐(0) 编辑
摘要: command+ N 快捷键 阅读全文
posted @ 2014-03-28 14:39 韦韦韦 阅读(360) 评论(0) 推荐(0) 编辑
摘要: google代码首页:http://code.google.com/p/panoramagl/库使用详细介绍:http://www.codeproject.com/KB/iPhone/panoramagl.aspx功能介绍:1、支持720全景展示2、支持重力加速度感应控制遇到主要问题及解决方法:1、No architectures to compile for (ARCHS=armv6 armv7, VALID_ARCHS=i386 ppc ppc64 ppc7400 ppc970 x86_64).==>需要添加armv6和armv7,如下图:[attachment=28204]2、gl 阅读全文
posted @ 2014-03-15 12:55 韦韦韦 阅读(748) 评论(0) 推荐(0) 编辑
摘要: (一)点击工具栏左上角点击 (苹果Logo)标志,关于本机 --> 更多信息 --> 系统报告 -->(左侧栏中)软件(二)打开终端,输入命令 uname -a 回车 x86_64 表示系统为64位 i686 表示系统32位的比如我的(三)在终端输入命令 ioreg -l -p IODeviceTree | grep "firmware-abi" | sed -e 's/[^0-9A-Z]//g' 输出:EFI64 --就说明系统是64位 输出:EFI32 --就说明系统是32位 阅读全文
posted @ 2014-03-13 15:51 韦韦韦 阅读(535) 评论(0) 推荐(0) 编辑
摘要: http://www.devdiv.com/iOS_iPhone-ASIHTTPRequest使用指南---_lt__lt_翻译稿_gt__gt_---连载-thread-93741-1-1.html 阅读全文
posted @ 2014-03-13 15:35 韦韦韦 阅读(111) 评论(0) 推荐(0) 编辑
摘要: block是可以捕捉上下文的特殊代码块。block可以访问定义在block外的变量,当在block中使用时,它就会为其在作用域内的每个标量变量创建一个副本。如果通过self拥有一个block,然后又在block中改变了实例变量,就会出错。例如:1 self.block = ^(NSString *aString)2 {3 self.aLabel.text = aString;4 });这段代码中,self保留了block,同时block又保留了self,会引发循环保留。很危险。如果未使用ARC,可以使用__block和__unsafe_unretained来复制一个未保留的引用副本。 ... 阅读全文
posted @ 2014-03-13 15:18 韦韦韦 阅读(1927) 评论(0) 推荐(0) 编辑
摘要: To locate the reference to theadvertisingIdentifier selector, please perform these steps to create an .ipa file of your app that matches what you submitted to the App Store:1. In the Xcode Organizer, instead of Submit to the iOS App Store, do Save for Enterprise or Ad-Hoc Deployment. That will creat 阅读全文
posted @ 2014-03-07 09:38 韦韦韦 阅读(967) 评论(0) 推荐(0) 编辑
摘要: 最近应用因为这个问题被拒两次,理由如下:PLA 3.3.12We found your app uses the iOS Advertising Identifier but does not include ad functionality. This does not comply with the terms of theiOS Developer Program License Agreement, as required by theApp Store Review Guidelines.Specifically, section 3.3.12 of the iOS Develope 阅读全文
posted @ 2014-03-06 10:29 韦韦韦 阅读(572) 评论(0) 推荐(0) 编辑
摘要: 苹果开发者客服电话地址:https://developer.apple.com/contact/phone.php中国大陆地区客服电话:4006 701 855中国香港地区客服电话:(852) 21129966中国台湾地区客服电话:0800 022 237 阅读全文
posted @ 2014-03-03 11:00 韦韦韦 阅读(1311) 评论(0) 推荐(0) 编辑
摘要: 目录结构AppDelegateModelsMacroGeneralHelpersVendorsSectionsResources一个合理的目录结构首先应该是清晰的,让人一眼看上去就能大概了解目录的职责,且容易应对新的变化。AppDelegate这个目录下放的是AppDelegate.h(.m)文件,是整个应用的入口文件,所以单独拿出来。Models这个目录下放一些与数据相关的Model文件,里面大概是这样:Models |- BaseModel.h |- BaseModel.m |- CollectionModel.h |- CollectionModel.m ...Macro这个目... 阅读全文
posted @ 2014-02-28 14:54 韦韦韦 阅读(934) 评论(1) 推荐(0) 编辑
摘要: CFBundleVersion,标识(发布或未发布)的内部版本号。这是一个单调增加的字符串,包括一个或多个时期分隔的整数。CFBundleShortVersionString标识应用程序的发布版本号。该版本的版本号是三个时期分隔的整数组成的字符串。第一个整数代表重大修改的版本,如实现新的功能或重大变化的修订。第二个整数表示的修订,实现较突出的特点。第三个整数代表维护版本。该键的值不同于“CFBundleVersion”标识。版本号的管理是一个谨慎的事情,希望各位开发者了解其中的意义。比较小白,更新应用的时候遇到版本号CFBundleShortVersionString命名的错误,导致无法更新, 阅读全文
posted @ 2014-02-26 09:52 韦韦韦 阅读(302) 评论(0) 推荐(0) 编辑
摘要: In App Purchase StatusesThe following are the available states that can be assigned to your in app purchase.A)Pending Developer Approval– Your in app purchase has been created but has not been tested in a sandbox environment and approved by you.B)Approved By Developer– Your in app purchase has been 阅读全文
posted @ 2014-02-24 15:51 韦韦韦 阅读(284) 评论(0) 推荐(0) 编辑
摘要: NSCalendar*calendar = [[NSCalendaralloc]initWithCalendarIdentifier:NSGregorianCalendar]; NSDateComponents*comps =nil; comps = [calendarcomponents:NSYearCalendarUnit|NSMonthCalendarUnit|NSDayCalendarUnitfromDate:mydate]; NSDateComponents*adcomps = [[NSDateComponentsalloc]init]; [adcompssetYear:0]; .. 阅读全文
posted @ 2014-01-14 09:43 韦韦韦 阅读(395) 评论(0) 推荐(0) 编辑
摘要: //只需如下设置imageView [picImg setContentScaleFactor:[[UIScreenmainScreen] scale]]; picImg.contentMode = UIViewContentModeScaleAspectFill; picImg.autoresizingMask = UIViewAutoresizingFlexibleWidth;//根据你的需求 picImg.clipsToBounds = YES;//切掉多余部分 阅读全文
posted @ 2014-01-10 15:32 韦韦韦 阅读(1379) 评论(0) 推荐(0) 编辑
摘要: 做这些的前提是你配置好了所有的证书,如果还没先去配置证书吧。1.打开需要生成ipa的ios项目。2.在运行按钮的后面选择ios Device3.点击Product 按钮,选择第五个Archive4.点击Distribute 的按钮5.选择三个单选按钮 Export as Xcode Archive .点击next6.这时候会让你选择存放路径,和名字,随便写。7.你可以去你选择的路径找生成的文件了,注意这时候还不是ipa文件,8.右键点击生成的文件选择“显示包内容”,然后双击打开Products 文件,再继续打开进入Applications 文件中。9.把里面的文件拉出来,再拖到iTunes中, 阅读全文
posted @ 2014-01-03 10:07 韦韦韦 阅读(283) 评论(0) 推荐(0) 编辑
摘要: UIButton *aBtn=[UIButtonbuttonWithType:UIButtonTypeCustom]; [aBtn setFrame:CGRectMake(40, 100, 60, 60)]; [aBtn setBackgroundImage:[UIImageimageNamed:@"111.png"] forState:UIControlStateNormal]; //button点击事件 [aBtn addTarget:selfaction:@selector(btnShort:) forControlEvents:UIControlEventTouch 阅读全文
posted @ 2013-12-17 15:42 韦韦韦 阅读(710) 评论(0) 推荐(0) 编辑
摘要: staticNSOperationQueue* queue;- (void)viewDidLoad{ [superviewDidLoad]; queue= [[NSOperationQueuealloc]init]; NSInvocationOperation* op = [[NSInvocationOperationalloc]initWithTarget:selfselector:@selector(download)object:nil]; [queueaddOperation:op];}- (void)download { NSURL * url = [NSURLURLWit... 阅读全文
posted @ 2013-11-26 21:51 韦韦韦 阅读(182) 评论(0) 推荐(0) 编辑
摘要: -(NSString*)GetUUID{ CFUUIDRef puuid = CFUUIDCreate( nil ); CFStringRef uuidString = CFUUIDCreateString( nil, puuid ); NSString * result = (NSString *)CFBridgingRelease(CFStringCreateCopy( NULL, uuidString)); CFRelease(puuid); CFRelease(uuidString); return result;} 阅读全文
posted @ 2013-11-26 21:47 韦韦韦 阅读(210) 评论(0) 推荐(0) 编辑
摘要: //组装一个字符串,把里面的网址解析出来 NSString *urlString = @"sfdshttp://www.baidu.com"; NSError *error; //http+:[^\\s]* 这是检测网址的正则表达式 NSRegularExpression *regex =... 阅读全文
posted @ 2013-11-25 10:23 韦韦韦 阅读(308) 评论(0) 推荐(0) 编辑
摘要: abel.font=[UIFontfontWithName:@"Arial-BoldItalicMT"size:24];字体名如下:Font Family: American TypewriterFont: AmericanTypewriterFont: AmericanTypewriter-BoldFont Family: AppleGothicFont: AppleGothicFont Family: ArialFont: ArialMTFont: Arial-BoldMTFont: Arial-BoldItalicMTFont: Arial-ItalicMTFont 阅读全文
posted @ 2013-10-30 10:14 韦韦韦 阅读(234) 评论(0) 推荐(0) 编辑
摘要: - (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCapHeight 这个函数是UIImage的一个实例函数,它的功能是创建一个内容可拉伸,而边角不拉伸的图片,需要两个参数,第一个是左边不拉伸区域的宽度,第二个参数是上面不拉伸的高度。根据设置的宽度和高度,将接下来的一个像素进行左右扩展和上下拉伸。注意:可拉伸的范围都是距离leftCapWidth后的1竖排像素,和距离topCapHeight后的1横排像素。参数的意义是,如果参数指定10,5。那么,图片 阅读全文
posted @ 2013-10-26 08:58 韦韦韦 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 设置背景:[_tabBarsetBackgroundImage:[UIImageimageNamed:@"bg_tabbar"]];设置某个Item选中的效果:_tabBar.selectionIndicatorImage=[UIImageimageNamed:@"bar_item_selected"];//设置选中效果图片设置UITabBarItem文字颜色[[UITabBarItemappearance]setTitleTextAttributes:@{UITextAttributeTextColor:[UIColorwhiteColor]}forS 阅读全文
posted @ 2013-10-25 14:26 韦韦韦 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 继承UISearchBar. 重载setShowCancelButton.[super xxx]; ...for (UIView *subview in self.subview) {if (subview isKindeOfClass:UIButton.class]) {cancelButton * = (UIButton*) subview;break;} 阅读全文
posted @ 2013-09-22 13:15 韦韦韦 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 一般我们会用此方法加载被背景图片[self.view setBackgroundColor:[UIColor colorWithPatternImage:[[UIImage alloc]initWithContentsOfFile:App_ContentFile(@"xxx", @"png")]]];但是有时候会发现内存变大的离谱,再给self.view设置背景时候可以用UIImageView:self.view = [[UIImageView alloc] init];还有一种方法也许会帮到你:self.view.layer.contents = (i 阅读全文
posted @ 2013-09-04 16:34 韦韦韦 阅读(279) 评论(0) 推荐(0) 编辑
摘要: -(UIImage *)scaleToSize:(UIImage *)img size:(CGSize)size{ UIGraphicsBeginImageContext(size); [img drawInRect:CGRectMake(0, 0, size.width, size.height)]; UIImage* scaledImage = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); return scaledImage;} 阅读全文
posted @ 2013-09-04 10:40 韦韦韦 阅读(620) 评论(1) 推荐(0) 编辑
摘要: for (UIView *searchBarSubview in [searchBar subviews]) {if ([searchBarSubview conformsToProtocol:@protocol(UITextInputTraits)]) {[(UITextField *)searchBarSubview setReturnKeyType:UIReturnKeyDone]; [(UITextField *)searchBarSubview setEnablesReturnKeyAutomatically:NO];}} 阅读全文
posted @ 2013-09-04 10:35 韦韦韦 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 1.获取音频文件路径例如:NSURL*recordedFile=[NSURLfileURLWithPath:[NSTemporaryDirectory()stringByAppendingPathComponent:[NSStringstringWithFormat:@"%.0f.%@",[NSDatetimeIntervalSinceReferenceDate]*1000.0,@"caf"]]];2.将音频文件转成NSDataNSData*soundData=[[NSDataalloc]initWithContentsOfURL:recordedFil 阅读全文
posted @ 2013-08-22 22:22 韦韦韦 阅读(433) 评论(1) 推荐(0) 编辑
摘要: dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ [self.tableView reloadData]; });注意:有待于进一步考证这个用法 阅读全文
posted @ 2013-08-16 10:38 韦韦韦 阅读(356) 评论(2) 推荐(0) 编辑
摘要: // 原代码块一 dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ // 原代码块二 NSURL * url = [NSURLURLWithString:@"http://www.youdao.com"]; NSError * error; NSString * data = [NSStringstringWithContentsOfURL:url encoding:NSUTF8StringEncodingerror:&error]; if (data.. 阅读全文
posted @ 2013-08-16 10:01 韦韦韦 阅读(185) 评论(0) 推荐(0) 编辑
摘要: + (UIImage*)imageFromView:(UIView*)view{ UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, view.layer.contentsScale); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); retu... 阅读全文
posted @ 2013-08-16 09:56 韦韦韦 阅读(181) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7