如何为每个单元格添加按钮?

时间:2020-12-24 23:00:03

I currently have a program which will add the title/artist/album to each cell in a uitableview, but how do I add a button? Every time a song changes the new title/artist/album will be put in a new cell. Every time and new tag is put into a new cell I need a button to be added too. How would I do that? Down below is my code with what I currently have to add a button, but nothing works.

我目前有一个程序,它会在uitableview中为每个单元格添加标题/艺术家/专辑,但是如何添加按钮呢?每当歌曲改变时,新的标题/艺术家/专辑将被放入新的单元格中。每次将新标签放入新单元格时,我都需要添加一个按钮。我该怎么办?下面是我的代码与我目前有什么添加按钮,但没有任何作用。

override func viewDidLoad() {
super.viewDidLoad()
NSNotificationCenter.defaultCenter().addObserver(self, selector: "getNowPlayingItem", name: MPMusicPlayerControllerNowPlayingItemDidChangeNotification, object: nil)
musicPlayer.beginGeneratingPlaybackNotifications()

playButton = UIButton()
let image = "playbutton.png"
playButton.setImage(UIImage(named:image), forState: .Normal)
playButton.addTarget(self, action: "play:", forControlEvents: UIControlEvents.TouchUpInside)

// Do any additional setup after loading the view.
}

func getNowPlayingItem() {
if let nowPlaying = musicPlayer.nowPlayingItem {
    let title = nowPlaying[MPMediaItemPropertyTitle] as? String
    let artist = nowPlaying[MPMediaItemPropertyArtist] as? String
    let album = nowPlaying[MPMediaItemPropertyAlbumTitle] as? String
    println("Song: \(title)")
    println("Artist: \(artist)")
    println("Album: \(album)")
    println("\n")


    self.add = [Play(name: "\(title!)\n\(artist!)\n\(album!)")]
    self.table.rowHeight = UITableViewAutomaticDimension
    self.table.estimatedRowHeight = 44.0

}


}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.add.count
//return count of objects in array
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: UITableViewCell = self.table.dequeueReusableCellWithIdentifier("cell") as! UITableViewCell
var play: Play

play = add[indexPath.row]

cell.textLabel?.text = play.name

cell.textLabel?.numberOfLines = 3;
cell.textLabel?.lineBreakMode = NSLineBreakMode.ByWordWrapping


playButton.tag = indexPath.row


return cell
}    

1 个解决方案

#1


0  

The UITableViewCell does not provide UIButton. UITableViewCell has several styles. But None of the style provides UIButton. Here is the Documentation

UITableViewCell不提供UIButton。 UITableViewCell有几种风格。但是没有一种风格提供UIButton。这是文档

Try to write a new class MyUITableViewCell inherited from UITableViewCell。You can add an UIButton in the [MyUITableViewCell initWithStyle:reuseIdentifier:].

尝试编写一个继承自UITableViewCell的新类MyUITableViewCell。您可以在[MyUITableViewCell initWithStyle:reuseIdentifier:]中添加一个UIButton。

#1


0  

The UITableViewCell does not provide UIButton. UITableViewCell has several styles. But None of the style provides UIButton. Here is the Documentation

UITableViewCell不提供UIButton。 UITableViewCell有几种风格。但是没有一种风格提供UIButton。这是文档

Try to write a new class MyUITableViewCell inherited from UITableViewCell。You can add an UIButton in the [MyUITableViewCell initWithStyle:reuseIdentifier:].

尝试编写一个继承自UITableViewCell的新类MyUITableViewCell。您可以在[MyUITableViewCell initWithStyle:reuseIdentifier:]中添加一个UIButton。

相关文章