Xcode 7.3의 Playground가 드디어 상호작용에 대응합니다!

3592 단어 playgroundXcodeSwift
Xcode 7.3부터 Playground는 터치 활동 등에 대응합니다.

상술한 견본은 다음과 같은 코드이다

import UIKit
import XCPlayground

class ViewController: UITableViewController {
  override func viewDidLoad() {
    super.viewDidLoad()
    view.backgroundColor = .whiteColor()
    view.frame = CGRectMake(0, 0, 1136/2, 640/2)
  }
}

extension ViewController {
  override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 50
  }
  override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = UITableViewCell()
    cell.textLabel?.text = "hello \(indexPath.row)"
    return cell
  }
}

XCPlaygroundPage.currentPage.liveView = ViewController()

좋은 웹페이지 즐겨찾기