作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何以编程方式将 UIActivityViewIndicator
置于 UITableViewCell
中?
最佳答案
在 UITableViewController
的自定义子类中尝试类似的操作:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cellIdentifier = "LoadingCell"
var cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier) as UITableViewCell!
if cell == nil {
cell = UITableViewCell(style: .Default, reuseIdentifier: cellIdentifier)
let activityIndicatorView = UIActivityIndicatorView(activityIndicatorStyle: .Gray)
activityIndicatorView.autoresizingMask = [.FlexibleLeftMargin, .FlexibleRightMargin, .FlexibleTopMargin, .FlexibleBottomMargin]
activityIndicatorView.center = cell.center
cell.contentView.addSubview(activityIndicatorView)
}
return cell
}
关于ios - 将 UIActivityViewIndicator 置于 UITableViewCell 的中心?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39307981/
我的应用程序委托(delegate)中有一个方法,调用该方法可以从 Web 服务器提取信息。有没有一种方法可以轻松地将 UIActivityViewIndicators 合并到应用程序委托(deleg
如何以编程方式将 UIActivityViewIndicator 置于 UITableViewCell 中? 最佳答案 在 UITableViewController 的自定义子类中尝试类似的操作:
我正在创建一个简单的网络浏览器作为练习。 -(IBAction)go:(id)sender { NSString *query = [_urlField.text stringByReplacingO
我是一名优秀的程序员,十分优秀!