上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: 代码部分#undef NSLocalizedString#define NSLocalizedString(key, comment) \ NSLocalizedStringFromTable(key, [[RFLanguage defaultInstance] currentLanguageFile], comment)[[RFLanguage defaultInstance] currentLanguageFile] 方法可动态返回 strings 文件的名字 阅读全文
posted @ 2014-01-08 16:54 有妄想症的猫zz 阅读(2185) 评论(1) 推荐(0) 编辑
摘要: 1.创建一个 xib 文件 : Main_iPhone.xib更改 File's Owner 的 Class 为 UIApplication;添加 1 个 Window 、1 个 Object 、 1 个 UIViewController;更改Object 的 Class 为 XXAppdelegate,设置 Window 为 XXAppdelegate 的属性 _window;设置 UIViewController 为 Window 的属性 rootViewController 。2.为项目设置 Main InterfaceProject - Target - General - D 阅读全文
posted @ 2014-01-03 17:53 有妄想症的猫zz 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 1.打开终端,输入cd,空格,然后将需要上传的.a文件所在的文件夹(不是.a文件)拖拽到终端(此办法无需输入繁琐的路径,快捷方便) ,回车;2.之后再输入如下命令:svn add xxx.a,回车;3.之后会出现:A (bin) xxx.a 阅读全文
posted @ 2014-01-03 13:29 有妄想症的猫zz 阅读(1766) 评论(1) 推荐(0) 编辑
摘要: 以下代码由 CocoaChina 版主 “cclv” 分享,可用于判断应用运行的设备是否是 iPad#define isPad (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)// 同理,UIUserInterfaceIdiomPhone 即是判断是否是 iPhone 阅读全文
posted @ 2014-01-03 11:17 有妄想症的猫zz 阅读(3587) 评论(0) 推荐(0) 编辑
摘要: https://developer.apple.com/library/ios/navigation/index.html#section=Resource%20Types&topic=Sample%20Code 阅读全文
posted @ 2014-01-03 09:56 有妄想症的猫zz 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 编辑信息页面用了很多选择栏,大部分都用 UIPickerView 来实现。在切换数据显示的时候, UIPickerView 不更新数据,不得其解。Google 无解,原因在于无法描述自己的问题,想想应该还是代码哪里写错了。写了个测试方法,预期效果出现,于是与远方法兑换了一下,才发现问题所在: [self addChildViewController:self.pickerController]; CGRect rect = CGRectOffset(self.view.bounds, 0, self.view.bounds.size.height); self.pickerC... 阅读全文
posted @ 2013-12-31 15:10 有妄想症的猫zz 阅读(1302) 评论(0) 推荐(0) 编辑
摘要: 转自 ITeye技术网站// 触摸屏-(void) ccTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{ for( UITouch *touch in touches ) { CGPoint location = [touch locationInView: [touch view]]; location = [[CCDirector sharedDirector] convertToGL: location]; // 各种动作 // 瞬时动作 ... 阅读全文
posted @ 2013-12-18 15:14 有妄想症的猫zz 阅读(618) 评论(0) 推荐(0) 编辑
摘要: FromCodeographyIf you want to exclude a file from being compiled with ARC you can do so by setting a flag on the .m file:Click the Project -> Build Phases Tab -> Compile Sources Section -> Double Click on the file nameThen add-fno-objc-arcto the popup window.Likewise, if you want to include 阅读全文
posted @ 2013-12-16 10:45 有妄想症的猫zz 阅读(384) 评论(0) 推荐(0) 编辑
摘要: NSString *baiduURLSchemes = [NSString stringWithFormat:@"baidumap://map/geocoder?address=%@&output=html&src=ruifeng", address]; // 若不 encoding,返回的 URL 为空值 NSURL *baiduURL = [NSURL URLWithString:[baiduURLSchemes stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; ... 阅读全文
posted @ 2013-12-13 16:10 有妄想症的猫zz 阅读(555) 评论(0) 推荐(0) 编辑
摘要: CAGradientLayer *layer = [[CAGradientLayer alloc] init]; layer.frame = self.bounds; //渐变转折点 layer.locations = @[@0, @0.25, @0.75, @1]; //渐变颜色,个数与locations一致 layer.colors = [NSArray arrayWithObjects:(id)[UIColor clearColor].CGColor, (id)[UIColor blackColor].CGColor, (id)[UIColor bl... 阅读全文
posted @ 2013-12-13 16:05 有妄想症的猫zz 阅读(468) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页