Tag: 快速操场

我如何做一个圆angular的UIImage / -View CGRect(Swift)

如何在Swift iOS Playground上制作带圆angular的UIImageView? 里面需要填充颜色。

类“ViewController”在swift中没有初始化器

当我这样做的时候从编译器得到投诉 class ViewController: UIViewController { var delegate : AppDelegate override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. //self.appDelegate = UIApplication.sharedApplication().delegate; } @IBAction func getData(sender : AnyObject) { } @IBAction func LogOut(sender : AnyObject) { } } 但是,如果我只是添加? 在下面的AppDelegate结束,错误消失了。 class ViewController: UIViewController { var delegate : […]

如何在Playground中运行asynchronouscallback

许多Cocoa和CocoaTouch方法在Objective-C和Swift中的闭包中都实现了完成callback。 但是,在Playground中尝试这些时,完成不会被调用。 例如: // Playground – noun: a place where people can play import Cocoa import XCPlayground let url = NSURL(string: "http://stackoverflow.com") let request = NSURLRequest(URL: url) NSURLConnection.sendAsynchronousRequest(request, queue:NSOperationQueue.currentQueue() { response, maybeData, error in // This block never gets called? if let data = maybeData { let contents = NSString(data:data, encoding:NSUTF8StringEncoding) println(contents) } else { […]