Swift / objC的新手,我在Swift中编写了一个应用程序,它将多个触点(如CGPoint)附加到数组中,然后从该数组中选择一个随机点。
我想在视图中为该点添加一个基本的UI组件(圆形或矩形),但我已经四处搜索,似乎无法找到任何资源。
我已经添加了将触摸附加到数组并使用下面的输出选择随机点的代码。任何想法都将不胜感激。
// add touches to array
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
let touch = touches.first as UITouch!
let location = touch.locationInView(view)
arr.append(location)
}
// select random touch from array
let randomIndex = Int(arc4random_uniform(UInt32(arr.count)))
let foo = arr[randomIndex]
print(foo) >> (29.0, 213.0)