【已解决】swift实现导航栏的页面跳转
crifan 9年前 (2015-11-12) 2814浏览 0评论
想要实现,页面跳转,基于导航栏的去跳转。 搜: swift navigation view 参考: Start Developing iOS Apps (Swift): Implement Navigation 搜: sw...
crifan 9年前 (2015-11-12) 2814浏览 0评论
想要实现,页面跳转,基于导航栏的去跳转。 搜: swift navigation view 参考: Start Developing iOS Apps (Swift): Implement Navigation 搜: sw...
crifan 9年前 (2015-11-11) 3050浏览 0评论
想要设置tab的背景色: 相关已有代码为: //6. create tabs let viewConversation = ConversationViewController() let...
crifan 9年前 (2015-11-11) 4499浏览 0评论
如图: UITableViewCell的text和detailText的垂直距离非常小,希望: 让text和detailText都垂直居中,上下的距离大一些 增加textLabel和detailTextLabel的垂直方向的距离 [解决过程] ...
crifan 9年前 (2015-11-10) 3062浏览 0评论
希望实现 把一个视图,从父视图中移除掉 类似于: removeSubviews 最后经过找寻,发现是removeFromSuperview: 比如: cell.detailTextLabel?.subviews[0].removeFromSu...
crifan 9年前 (2015-11-09) 3286浏览 0评论
UITableViewCell中: cell.detailTextLabel?.textColor = ColorConversationDetailText cell.detailTextLabel?.font = ...
crifan 9年前 (2015-11-09) 1946浏览 0评论
之前折腾过iOS的UITableView 现在整理一点,相关的资料。 UITableView的布局和元素 UIKit User Interface Catalog: Table Views A Closer Look at Ta...
crifan 9年前 (2015-11-09) 4424浏览 0评论
swift中,想要初始化一个指定个数的某个类型的数组,比如: var uniqueRandomArr:[Int] = [Int](arrCount) 根据代码提示: Missing argument label arrayLiterral in c...
crifan 9年前 (2015-11-08) 5307浏览 0评论
swift中的switch case语句中,多个case放在一起的写法,不是: switch xxx{ case 1: case 2: yyyy } 官网的: let anotherCharacter: Character = "a" swit...
crifan 9年前 (2015-11-07) 4152浏览 0评论
代码: imageArr:[UIImage] for index in imageArr.count { 出错: Value of type ‘Int’ has no member ‘Generator&...
crifan 9年前 (2015-11-07) 3905浏览 0评论
已经实现单张图片了。 需要实现多张图片合并到单张图片中,类似这样的效果: 搜: swift merge multiple into single UIImage 参考: iphone – How to combine/...