Tag: 迅速

Noop为Swift的彻底切换语句

Swift需要彻底的switch语句,并且每个case都有可执行代码。 有没有人有办法处理你不想做任何事情的情况呢? 我可以在里面放一个println(),但是感觉很脏。

你可以使用Swift作为Web编程语言吗?

你能技术上使用Swift作为编程语言来构build一个网站/ Web应用程序吗? 更新:看起来像很多人正在这个工作。 https://github.com/PerfectlySoft/Perfect https://github.com/glock45/swifter https://github.com/grzegorzleszek/HTTPSwiftServer https://github.com/izqui/Taylor https://github.com/crossroadlabs/express https://github.com/IBM-Swift/Kitura https://github.com/vapor/vapor 苹果官方支持: https : //swift.org/server-apis/

Swift:删除所有数组元素

我试图删除所有数组元素与for循环像这样: for index 1…myArray.count { myArray.removeAtIndex(index) } 但它不起作用,我在build立之前得到这个错误: 预期';' 在'for'语句中

用于JSON请求的AlamoFireasynchronouscompletionHandler

在使用了AlamoFire框架之后,我注意到了completionHandler在主线程上运行。 我想知道是否下面的代码是一个很好的做法,在完成处理程序中创build一个核心数据导入任务: Alamofire.request(.GET, "http://myWebSite.com", parameters: parameters) .responseJSON(options: .MutableContainers) { (_, _, JSON, error) -> Void in dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), { () -> Void in if let err = error{ println("Error:\(error)") return; } if let jsonArray = JSON as? [NSArray]{ let importer = CDImporter(incomingArray: jsonArray entity: "Artist", map: artistEntityMap); } }); }

以编程方式创buildbutton并设置背景图像

当我尝试在Swift中创buildbutton并设置背景图像时: let button = UIButton.buttonWithType(UIButtonType.System) as UIButton button.frame = CGRectMake(100, 100, 100, 100) button.setImage(IMAGE, forState: UIControlState.Normal) button.addTarget(self, action: "btnTouched:", forControlEvents: UIControlEvents.TouchUpInside) self.view.addSubview(button) 我总是得到一个错误:“ 无法转换expression式的types'Void'键入'UIImage' ”。

如何检查一个文件是否存在于Swift的Documents目录下?

如何检查一个文件是否存在于Swift的Documents目录下? 我正在使用[ .writeFilePath ]方法将图像保存到Documents目录中,每次启动应用程序时都要加载它。 但是如果没有保存的图像,我有一个默认图像。 但我只是不能得到我的头如何使用[ func fileExistsAtPath(_:) ]函数。 有人可以给一个使用该函数的pathparameter passing给它的例子。 我相信我不需要粘贴任何代码,因为这是一个通用的问题。 任何帮助都感激不尽。 干杯

UINavigationBar Swift中的文本颜色

我将如何去改变Swift中的UINavigationBar的颜色? 网上大多数事情都是这样做的: [self.navigationController.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]}]; 我翻译成的 let titleDict: NSDictionary = ["NSForegroundColorAttributeName": UIColor.whiteColor()] self.navigationController.navigationBartitleTextAttributes = titleDict //self is referring to a UIViewController 但它不起作用。 我已经改变了背景和button的颜色,但文字的颜色不会改变。 有任何想法吗?

iOS Swift:将图像大小调整为200x200pt / px

我一直在努力调整图像的大小。 基本上我已经st然心动了: 如何缩小UIImage,同时使其变得脆弱/锐利而不是模糊? 这似乎是一个合法的解决scheme,但它不能正常工作。 我的应用程序适用于相机胶卷中的照片。 这张照片应该调整到大约200×200,而宽度是重要的,而不是高度。 不幸的是,我没有一个示例代码,因为我放弃了我的愤怒关于非工作解决scheme;(对不起! 谢谢您的回答!

错误:模块文件的最低部署目标是ios8.3 v8.3

所有在Xcode操作系统中导入dynamic框架的尝试都会产生以下错误: error: module file's minimum deployment target is ios8.3 v8.3

如何在Swift中设置UIBarButtonItem的动作

如何设置Swift中的自定义UIBarButtonItem的操作? 以下代码将button成功放置在导航栏中: var b = UIBarButtonItem(title: "Continue", style: .Plain, target: self, action:nil) self.navigationItem.rightBarButtonItem = b 现在,当button被触摸时,我想调用func sayHello() { println("Hello") } 。 我迄今的努力: var b = UIBarButtonItem(title: "Continue", style: .Plain, target: self, action:sayHello:) // also with `sayHello` `sayHello()`, and `sayHello():` 和.. var b = UIBarButtonItem(title: "Continue", style: .Plain, target: self, action:@selector(sayHello:)) // also with `sayHello` `sayHello()`, […]