- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在这里,我从 Parse 检索了数据,并在 tableViewCell
中显示该数据。
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let myCell = tableView.dequeueReusableCellWithIdentifier("users", forIndexPath: indexPath) as! userListTableViewCell
let userData:PFObject = self.data.objectAtIndex(indexPath.row) as! PFObject
// Usernames and gender..
myCell.fullName.text = userData.objectForKey("fullName") as! String!
myCell.genderLabel.text = userData.objectForKey("gender") as! String!
// Profile pictures..
let profilePics = userData.objectForKey("profilePicture") as! PFFile
profilePics.getDataInBackgroundWithBlock { (data, error) -> Void in
if let downloadedImage = UIImage(data: data!) {
myCell.dp.image = downloadedImage
}
}
myCell.followButtton.addTarget(self, action: "followButtonTapped:", forControlEvents: UIControlEvents.TouchUpInside)
return myCell
}
现在我已经申请了UIButton
在UITableViewCell
成功了,我通过这种方式很好地获得了坐标:
// IBActions..
func followButtonTapped(sender:AnyObject) {
let buttonPosition = sender.convertPoint(CGPointZero, toView: self.tableView)
let indexPath = self.tableView.indexPathForRowAtPoint(buttonPosition)
if indexPath != nil {
println(indexPath)
}
}
现在,当用户点击任何按钮时,我想更改该按钮的标题。感谢您抽出时间......如果这是我问的基本问题,我很抱歉,我是初学者。
这就是点击按钮时我得到的结果..
<NSIndexPath: 0xc000000000000016> {length = 2, path = 0 - 0}
<NSIndexPath: 0xc000000000010016> {length = 2, path = 0 - 2}
我可以使用这个吗?
func followButtonTapped(sender:AnyObject) {
let buttonPosition = sender.convertPoint(CGPointZero, toView: self.tableView)
let indexPath = self.tableView.indexPathForRowAtPoint(buttonPosition)
if indexPath != nil {
sender.setTitle("title", forState: UIControlState.Normal)
println(indexPath)
}
}
..我愿意接受任何类型的答案..任何更好的方法也会被接受..
最佳答案
func followButtonTapped(sender:AnyObject) {
let buttonPosition = sender.convertPoint(CGPointZero, toView: self.tableView)
let indexPath = self.tableView.indexPathForRowAtPoint(buttonPosition)
if indexPath != nil {
if let cell = tableView.cellForRowatindexPath(indexPath){
cell.followButton.setTitle("input title here")
}
println(indexPath)
}
}
关于ios - 使用 let buttonPosition = sender.convertPoint(CGPointZero, toView : self. tableView) 点击时更改 TableViewCell 中 UIButton 的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31897107/
我无法将 CGContextDrawImage 转换为 swift 3 ,我尝试了 context.draw 但它不起作用。有没有人可以给我反馈 Error screenshot 代码: import
我在 UIView 类中声明了一个 CGPoint,在我的 viewController 中,我尝试检查该 CGPoint 不等于 CGPointZero,但我收到此错误:二进制表达式的无效操作数(“
我希望我的 UITextView 在 View 出现时滚动到顶部。 UITextView*note; [note setContentOffset:CGPointZero animated:YES];
我有一个 PopupView扩展 UIView .在 PopupView我有一个 UITextView . 当PopupView秀,我的 UITextView不是从第一行开始(它会滚动到底部) 所以我
我有一个包含内容的 UIView,并且正在实现拉动刷新功能。 如何将 UIScrollView 配置为始终反弹到 contentOffset 0,0(并使其看起来自然)? 我见过很多使用 UITabl
我有一个带有全屏 textView 的 Nib 。在viewDidLoad中, self.textView.attributedText = //some text; 它就这么简单,除了 iphone
将代码转换为最新的 swift 3.0 后,我收到此错误。 还告诉我 CGSize = CGSizeMake(0,0) 的解决方案 static var frameAtStartOfPan: CGRe
将代码转换为最新的 swift 3.0 后,我收到此错误。 还告诉我 CGSize = CGSizeMake(0,0) 的解决方案 static var frameAtStartOfPan: CGRe
将代码转换为最新的 swift 3.0 后,我收到此错误。 还告诉我 CGSize = CGSizeMake(0,0) 的解决方案 static var frameAtStartOfPan: CGRe
将代码转换为最新的 swift 3.0 后,我看到了这个错误。 同时告诉我 CGSize = CGSizeMake(0,0) 的解决方案 static var frameAtStartOfPan: C
在这里,我从 Parse 检索了数据,并在 tableViewCell 中显示该数据。 override func tableView(tableView: UITableView, cellForR
我是一名优秀的程序员,十分优秀!