Category Archives: iOS

swift+ios7+snapkit+tableviewCell高度动态计算的坑

首先说下,我不确定别的环境下有没有问题,但我这确实有问题,没有时间去探索到底是snapkit的坑,还是哪里的问题。

说下描述,一般我们在ios8以上可以很自由的使用autolayout解决动态高度的问题,ios7一般要这么搞:
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
/// TODO Cache[......]

继续阅读

[转]Application Loader上传之后出现Please sign in with an app-specific password. You can create one at appleid.apple.com

转载自:http://www.jianshu.com/p/0de73d9ead1d

今天要更新APP,因为是新的账号,所以在Xcode无法登陆。

提示信息:Please sign in with an app-specific password. You can create one at appleid.apple.com

最后论坛里面查看了之后,才发现是由于自己账号开启了二重验证,所以才导致在xcode上无法登陆

解决办法如下:

在Apple官网登陆你的账号,在[......]

继续阅读