1、关于swift和调试,swift在ios7.0才支持,ios8.3系统的真机必需要xcode6.3才干调试。安装xcode6.3需要os x 10.10以上 2、应用程序由Main.storyboard启动和设置,定义先启动哪个ViewController 3、组件有两种方式实例化。一种是直接在 ...
分类:
移动开发 时间:
2017-06-13 21:48:34
阅读次数:
178
一行代码巧妙实现iOS返回button: self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithImage:[[UIImage imageNamed:@"back"] imageWithRenderingMod ...
分类:
移动开发 时间:
2017-06-09 09:54:13
阅读次数:
181
.h文件 #import <UIKit/UIKit.h> @interface UILabel (ContentSize) - (CGSize)contentSize; @end .m文件 #import "UILabel+ContentSize.h" @implementation UILabel ...
分类:
移动开发 时间:
2017-06-06 15:53:27
阅读次数:
206
//创建一个左边button UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithTitle:@"<" style:UIBarButtonItemStylePlain target:self action:@selector( ...
分类:
其他好文 时间:
2017-06-03 21:42:52
阅读次数:
295
UIBarButtonItem *backItem = [[UIBarButtonItem alloc] init]; backItem.title =@"返回"; self.navigationItem.backBarButtonItem = backItem; [self.navigationC ...
分类:
移动开发 时间:
2017-06-03 16:14:45
阅读次数:
223
//给导航添加item var rightItem = UIBarButtonItem(title: "First", style: UIBarButtonItemStyle.Plain, target: self, action: "fisrtItem:") rightItem.title = " ...
分类:
编程语言 时间:
2017-05-31 20:12:30
阅读次数:
245
一、旋转后相对位置不变 二、旋转后相对位置变化 2.1默认: 2.2调整后 三、小结 3.1 在APP级别设置支持哪些方向: 3.2 在viewController(xlib)级别设置支持哪些方向: #import "JAViewController.h" @interface JAViewCont ...
分类:
移动开发 时间:
2017-05-30 22:05:16
阅读次数:
308
1.效果图: 之前在《Android 高仿 IOS7 IPhone 解锁 Slide To Unlock》中制作了文字上闪亮移动的效果,这次我们来看下怎样在cocos2d js 中做出类似的效果。 顺便给我公司的游戏打下广告。https://itunes.apple.com/cn/app/kuang ...
分类:
Web程序 时间:
2017-05-29 13:31:49
阅读次数:
204
从iOS7開始 苹果发布了JavaScriptCore.framework 它使得JS与OC的交互更加方便了。 以下我们就简单了解一下这个框架 首先我导入framework 方法例如以下 点击Linked Frameworks and Libraries 的加入后 选择 JavaScriptCore ...
分类:
移动开发 时间:
2017-05-28 20:51:09
阅读次数:
209
使用[[NSBundle mainBundle] appStoreReceiptURL]方式获取receipt (iOS7及以上获取receipt的方法) 普通付费 "latest_receipt_info" = (//注意这里是数组 { "expires_date" = "2015-07-21 1 ...
分类:
移动开发 时间:
2017-05-28 14:26:20
阅读次数:
307