Tag: 迅速

正确的方法来在Swift中find数组中的最大值

到目前为止,我得到了一个简单的(但可能是昂贵的)方法: var myMax = sort(myArray,>)[0] 而我在学校的教学方式如何? var myMax = 0 for i in 0..myArray.count { if (myArray[i] > myMax){myMax = myArray[i]} } 有没有更好的方法来从Swift中的整数数组中获取最大值? 理想情况下,就像Ruby的.max

如何使用Swift将文本复制到剪贴板/粘贴板

我正在寻找一个干净的例子,如何将文本复制到iOS剪贴板,然后可以在其他应用程序中使用/粘贴。 这个function的好处是可以快速复制文本,而不需要传统文本复制的标准文本高亮function。 我假设关键类位于UIPasteboard中,但在代码示例中找不到相关区域: https : //developer.apple.com/documentation/uikit/uipasteboard

迅速可平等协议

我是Swift的教程: https : //www.raywenderlich.com/125311/make-game-like-candy-crush-spritekit-swift-part-1 ,碰到这样的代码: func == (lhs: Cookie, rhs: Cookie) -> Bool { return lhs.column == rhs.column && lhs.row == rhs.row } 我写的确切,但Xcode是给我这些错误: Consecutive declarations on a line must be separated by ';' Expected declaration operators are only allowed at global scope 我从苹果的文档中find这个代码: https : //developer.apple.com/documentation/swift/equatable 这和我写的非常相似。 怎么了? 这对我来说似乎是一个错误。 我正在使用Xcode 6 Beta 2 编辑: […]

Y类的对象X在Swift中没有实现methodSignatureForSelector

我有一个多次实例化的类Person。每个人都有自己的计时器。 在我的Person init我调用startTimer() 。 class Person { var timer = NSTimer() func startTimer() { timer = NSTimer.scheduledTimerWithTimeInterval(1, target: self, selector: Selector("timerTick"), userInfo: nil, repeats: true) } func timerTick() { angerLevel++ println("Angry! \(angerLevel)") } … … } 所以我可能在Person[]的数组中有Person[] 3个实例。 我收到一个错误: 2014-06-25 13:57:14.956 ThisProgram[3842:148856] *** NSForwarding: warning: object 0x113760048 of class '_TtC11ThisProgram6Person' does not implement methodSignatureForSelector: — […]

使用Swift 3.0编译的模块不能在Swift 3.0.1中导入

我升级了Xcode到8.1 GM,现在我得到了SwiftyJSON的下面的错误。 其他import的框架似乎工作。 有没有办法强制这个在Swift 3中工作,直到SwiftyJSON升级他们的框架? 我用迦太基导入/更新框架。 我也尝试改变Use Legacy Swift language version开启和closures无济于事。 使用Swift 3.0编译的模块不能在Swift 3.0.1中导入:Modules / SwiftyJSON.swiftmodule / arm64.swiftmodule

如何识别所有4个方向的滑动

我需要使用滑动来识别滑动手势,然后右键。 但在迅速的UISwipeGestureRecognizer已经预先确定了正确的方向..我不知道如何使这个使用其他方向..

如何手动弃用成员

与Objective-C不同的是,Swift没有预处理器,那么是否仍然有办法手动弃用某个类的成员? 我正在寻找类似的东西: -(id)method __deprecated;

Swift中的多个types约束

比方说,我有这些协议: protocol SomeProtocol { } protocol SomeOtherProtocol { } 现在,如果我想要一个采用genericstypes的函数,但该types必须符合SomeProtocol我可以这样做: func someFunc<T: SomeProtocol>(arg: T) { // do stuff } 但有没有办法为多个协议添加types约束? func bothFunc<T: SomeProtocol | SomeOtherProtocol>(arg: T) { } 类似的东西使用逗号,但在这种情况下,它将开始另一种types的声明。 这是我试过的。 <T: SomeProtocol | SomeOtherProtocol> <T: SomeProtocol , SomeOtherProtocol> <T: SomeProtocol : SomeOtherProtocol>

什么是Swift中的一部分?

什么是Swift中的一个分片,它与数组有什么不同? 从文档中,下标(Range)的types签名是: subscript(Range<Int>) -> Slice<T> 为什么不返回另一个Array<T>而不是一个Slice<T> ? 它看起来像我可以连接一个切片与数组: var list = ["hello", "world"] var slice: Array<String> = [] + list[0..list.count] 但是这会产生错误: 找不到接受提供的参数的'下标'重载 var list = ["hello", "world"] var slice: Array<String> = list[0..list.count] 什么是切片?

如何将Cocoapods与Swift项目整合?

正如苹果引入Swift这个他们的新编程语言,我想知道如何将它与通过CocoaPods提供的现有Objective-C库集成 ?