これを見て無性にsushiを流したくなったのでPlaygroundでsushiを流してみたら意外とみんな気にいってくれたので共有します。
sushiが流れる様子です pic.twitter.com/Dp7OpyXFRt
— mzp (@mzp) 2016年11月19日
ということで流す。※Xcode8.1
import UIKit
import PlaygroundSupport
let view = UIView(frame: CGRect(x: 0, y:0, width:320, height:44))
view.backgroundColor = UIColor.black
PlaygroundPage.current.liveView = view
(0...2).forEach {
let sushi = UILabel(frame: CGRect(x:320, y:0, width:44, height:44))
sushi.text = "🍣"
view.addSubview(sushi)
UIView.animate(withDuration: 3, delay: TimeInterval($0), options: [.curveLinear, .repeat], animations: { () -> Void in
sushi.center = CGPoint(x: 0, y: sushi.center.y)
}, completion: nil)
}
結果こんな感じ。
sushiはやっぱり人気らしい pic.twitter.com/3XHABqC6OU
— hideyuki nanashima (@jollyjoester) 2016年11月27日
みんなでPlaygroundにsushiを流そう^^/