UITableView   UITableView 在Ios中大量使用,我们对UITableview中的有关知识进行整理     UITAbleView是表视图控制器    1 UITableView初始化    2UITableview实现代理    3UITableView必须实现的方法(UITableviewdatasource)    3.1一个组里有多少cell    3.2 UITableviewcell的内容    4    UIcollectionView    UIcollec…
UITableView或UIScrollVIew上的UIButton的高亮效果 原文地址:http://www.jianshu.com/p/b4331f06bd34 最近做项目的时候发现,UIScrollView上的UIButton点击的时候没有高亮状态,但是确实触发了点击事件,不过这样会造成一个假象,给用户看来UIButton没有被点击的感觉. 但是要是长时间点击的话,则会高亮.于是我发现,导致这种现象应该就是时间长短的问题.顺着这个问题想下去,就追寻到UIScrollView的touch原理…
UITableView的一些常用操作 -------------------------------------------------------------------------------------------- // 隐藏TableView中cell之间的分割线 tableView.separatorStyle = UITableViewCellSeparatorStyleNone; // 隔行显示不同的颜色if (indexPath.row % 2 == 1){        ce…
工作之余,学习下swift大法.把自己的学习过程分享一下.当中的布局很乱,就表在意这些细节了.直接上代码: UITableView: // // ViewController.swift // UItableView-swift // // Created by shaoting on 16/3/23. // Copyright © 2016年 9elephas. All rights reserved. // import UIKit class ViewController: UIViewC…
整理来自互联网- 这是tableView继承的scrollView的一个属性 scrollsToTop. 官方说明是这样的: // When the user taps the status bar, the scroll view beneath the touch which is closest to the status bar will be scrolled to top, but only if its `scrollsToTop` property is YES, its del…
顺序如下:   1.数组添加:   for (id model in modellist.list) {     IDSCommentWeplayList *commentListModel = [IDSCommentWeplayList mj_objectWithKeyValues:model];     [_commentArray cl_addObject:commentListModel];     IDSWeplayCellHeight *cellHeight = [[IDSWepla…
1. 初始化Label设置AttributeString override func viewDidLoad() { let label = UILabel(frame:CGRect(x:,y:,width:(self.view.frame.size.width - ),height:)) label.font = UIFont.systemFont(ofSize: ) label.backgroundColor = UIColor.lightGray label.textColor = UIC…
iOS 滑动性能优化 目录 一. 减少图层的Blend操作 1. UIView的背景色避免使用clearColor 2. 控件贴图避免使用带alpha的图片 3. UIImageView 使用时避免半透明 二.适当使用Rasterize 三.避免图片资源的重采样 总结 更多参考资料 一. 减少图层的Blend操作 展示半透明的view,设备会把当前图层和背景图层进行alpha叠加,这是一项很耗性能的一件事.如果动画中每一帧都做叠加,性能的损耗是很严重. 1. UIView的背景色避免使用clea…
Awesome Swift https://github.com/matteocrippa/awesome-swift A collaborative list of awesome Swift resources,inspired by awesome-python and listed on awesome-awesomeness. Feel free to contribute! Awesome Swift Demo Apps iOS Apple Watch OS X Dependency…
#HTTPpod 'Alamofire' #Elegant HTTP Networking in Swiftpod 'SwiftHTTP' #Thin wrapper around NSURLSession in swift. Simplifies HTTP requests. #JSONpod 'SwiftyJSON' #The better way to deal with JSON data in Swiftpod 'Argo' #Functional JSON parsing libra…