我希望我的学生能够在iPad上的Swift代码中选择颜色,并使用Apple在完成栏中显示的酷炫UIColor选择器框。虽然我可以使用//# - 代码完成(所有内容,显示)以及Apple记录的其他内容来展示它,但它也是一堆其他东西,会让初学者感到困惑。我想只显示 UIColor选择器和我的标识符。我怎么能这样做?
//#-code-completion(everything, hide)
//#-code-completion(identifier, show, moveForward(), turnLeft(), moveBackward(), turnRight())
//
// the following attempt to show the UIColor picker doesn't work
//
//#-code-completion(identifier, show, UIColor.init(red:, green:, blue:, alpha:))
//#-hidden-code
setup()
//#-end-hidden-code
import UIKit
//#-editable-code Tap to enter code
//#-end-editable-code
//#-hidden-code
exitProgram()