PGメモ

非エンジニアの記録

2015-06-01から1ヶ月間の記事一覧

ボタンに長押しを実装する [Xcode6 / Swift]

import UIKit class ViewController: UIViewController { @IBOutlet var startBtn: UIView! override func viewDidLoad() { super.viewDidLoad() let myLongPressGesture = UILongPressGestureRecognizer(target: self, action: "pushStartBtn:") myLongPres…

conflicts with optional requirement methodの解決方法[Xcode6 / swift]

conflicts with optional requirement method なぜかこれが出ちゃった。解決方法としてメソッド名を消し、手打ちしたら治った。うーむ