Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /////NUMBER OF ROWS
- func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
- {
- return numberArray.count;
- }
- /////CELL FOR ROW
- func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
- {
- let contact = numberArray.objectAtIndex(indexPath.row)
- let cell:MyCustomClass = objTable.dequeueReusableCellWithIdentifier("reuseCell") as! MyCustomClass
- cell.textLabel?.text = String("Number \(contact)")
- cell.tickButton.addTarget(self, action:#selector(ViewController.tickClicked(_:)), forControlEvents: .TouchUpInside)
- cell.tickButton.tag=indexPath.row
- if selectedArray .containsObject(numberArray.objectAtIndex(indexPath.row)) {
- cell.tickButton.setBackgroundImage(UIImage(named:"Select.png"), forState: UIControlState.Normal)
- }
- else
- {
- cell.tickButton.setBackgroundImage(UIImage(named:"Diselect.png"), forState: UIControlState.Normal)
- }
- return cell
- }
- /////HEIGHT FOR ROW
- func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) ->CGFloat
- {
- return 80.0
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement