ERROR ITMS-90087: "Unsupported Architectures. The executable for LiveStorage.app/Frameworks/SpeechSDK.framework contains unsupported architectures '[x ...
分类:
移动开发 时间:
2016-11-21 18:53:11
阅读次数:
300
KVC是Cocoa一个大招,非常牛逼。 利用KVC可以随意修改一个对象的属性或者成员变量(并且私有的也可以修改) 如:Person.m文件中: @implementation Person{ @private double _height;}- (void)printHeight{ NSLog(@" ...
分类:
其他好文 时间:
2016-11-21 18:31:01
阅读次数:
202
http://blog.csdn.net/q199109106q/article/details/8615661 - (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger ...
分类:
移动开发 时间:
2016-11-21 16:38:48
阅读次数:
189
IOS各种调试技巧豪华套餐 普通操作 如图3 基本的断点操作如下 图4 点击那个黑列列就创建了一个断点,再次点击就临时取消这个断点(但是不删除),长按那个断点拖出去就删除了(mac os的系统工程师就是稀饭拖动的快感),当然也可以右键那个创建的断点,会弹出相应地菜单。当然也还可以监视某个变量!图5 ...
分类:
移动开发 时间:
2016-11-21 16:36:38
阅读次数:
316
问题: 在苹果手机IOS中 contenteditable="true" 做文本输入,点击可以弹出键盘但是无法输入,安卓都正常。 经测试,记得加一个样式-webkit-user-select:text就可以了。 ...
分类:
移动开发 时间:
2016-11-21 12:29:35
阅读次数:
321
1. 桌面图标 (app icon) for iPhone6 plus(@3x) : 180 x 180 for iPhone 6/5s/5/4s/4(@2x) : 120 x 120 2. 系统搜索框图标 (Spotlight search results icon) for iPhone6 pl ...
分类:
移动开发 时间:
2016-11-21 12:17:40
阅读次数:
193
1. 声明一下下 #import <CoreBluetooth/CoreBluetooth.h> 2 初始化在viewdidload 中 self.centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:dispa ...
分类:
移动开发 时间:
2016-11-21 12:12:15
阅读次数:
205
转载自 http://www.jianshu.com/p/05aad21e319e iOS被开发者遗忘在角落的NSException-其实它很强大 字数597 阅读968 评论4 喜欢28 NSException是什么? 最熟悉的陌生人,这是我对NSException的概述,为什么这么说呢?其实很多 ...
分类:
移动开发 时间:
2016-11-21 11:13:20
阅读次数:
219
/** * 计算上次日期距离现在多久 * * @param lastTime 上次日期(需要和格式对应) * @param format1 上次日期格式 * @param currentTime 最近日期(需要和格式对应) * @param format2 最近日期格式 * * @return xx ...
分类:
移动开发 时间:
2016-11-21 11:08:09
阅读次数:
222
//判断手机号码格式是否正确 + (BOOL)valiMobile:(NSString *)mobile{ mobile = [mobile stringByReplacingOccurrencesOfString:@" " withString:@""]; if (mobile.length != ...
分类:
移动开发 时间:
2016-11-21 11:06:25
阅读次数:
263