- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经把它添加到我的 appdelegate 中了
var controller:PFQueryTableViewController = PFQueryTableViewController(className: "Types_")
self.window?.rootViewController = controller
println(self.window?.rootViewController)
我像这样在 swift 中创建了一个新类:
class TableViewController: PFQueryTableViewController {
override init!(style: UITableViewStyle, className: String!) {
super.init(style: style, className: className)
}
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
self.parseClassName = "Types_"
self.pullToRefreshEnabled = true
self.paginationEnabled = true
self.objectsPerPage = 5
//self.textKey = "TypeOfVenue_"
}
override func queryForTable() -> PFQuery! {
var query = PFQuery(className: self.parseClassName)
if (objects.count == 0)
{
query.cachePolicy = kPFCachePolicyNetworkOnly
}
return query
}
override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!, object: PFObject!) -> PFTableViewCell!
{
var cellIdentifier = "eventCell"
var cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier) as PFTableViewCell!
if cell == nil {
cell = PFTableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: cellIdentifier)
}
cell.textLabel?.text = object["TypeOfVenue_"] as NSString
cell.detailTextLabel?.text = object["Seating"] as NSString
return cell
}
但是新类不执行,如果我在类中加断点,它不执行断点。
我在 Storyboard 中添加了一个 ViewController,并将该类链接到 View Controller ,如下所示:
有人有什么想法吗?
最佳答案
我在 Storyboard 上创建了一个 TableView Controller ,并删除了应用程序委托(delegate)中的代码以创建该 Controller 。
然后我将这个类添加为 TableView Controller 上的类,它起作用了。
关于ios - PFQueryTableView 未显示 - 在 SWIFT 中使用 PARSE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27508737/
我有以下表查询。 override func queryForTable() -> PFQuery { var query = PFQuery(className: "Posts")
在我的 PFQueryTableViewController 中,自定义 PFTableViewCell 的 没有任何分隔符,我也不知道为什么。 谷歌搜索时我没有找到任何东西。 我做错了什么?
我一直在使用 PFQueryTableView带有图片和文字。执行此代码后: - (id)initWithCoder:(NSCoder *)aDecoder { self = [super
我有 PFQueryTableView 和 UISearchBar 来从 Parse 服务器上的用户类中搜索用户,但我从未让它工作。这是我的代码: SearchViewController.h #im
我目前正在处理一个 PFQueryTableView,并试图用从 ViewDidLoad 中提取的数组中的数据填充它。更新:我已经将该函数移动到 NSObject 并实现了一个单例以跨多个类使用,以努
我正在实现 PFQueryTableView通过 Storyboard Controller 。我在实际实现代码时遵循了正确的方法(使用 initWithCoder: )。但是每当我尝试运行该应用程序
我目前正在学习本教程 http://www.appcoda.com/ios-programming-app-backend-parse/ 但是当来自 parse.com 的数据自动更新时,我希望 ta
我正在尝试弄清楚如何让 PFQueryTableViewController 的好处在嵌入了 TableView 的常规 UIViewController 内部工作。因为显然我无法将数据从解析加载到我
我使用 Parse.com 作为开发 iOS 应用程序的后端(使用 Swift)。 我目前有一个 PFQueryTableViewController 显示我的 Parse 表“Sports”中的行列
我已经把它添加到我的 appdelegate 中了 var controller:PFQueryTableViewController = PFQueryTableViewController(cla
我理解错误(Interface Builder 文件中的未知类 PFQueryTableView),但就是无法给它一个类。我看了 Vea Software 关于 PFQueryTableViewCon
如何在解析对象的文本之前或之后附加文本或空格。 我想在一个对象中的任何文本前添加#。 cell.TextLabel.text = object?.objectForKey("Hashtag") a
我正在使用 UITableViewController 来显示来自 Parse 的数据。它在我的 Xcode 模拟器上运行完美,因为我认为网络没有延迟。但是每当我将代码上传到 AppStore 进行测
我是一名优秀的程序员,十分优秀!