问题标签 [xcode6-beta6]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ios - 无法分配给“自我”中的“xxx”
我收到了这个编译器错误:无法在“self”中分配给“sci”
sci 是在其他文件中声明的全局变量,如下所示:
swift - Swift AnyObject 不能转换为 String/Int
我想将 JSON 解析为对象,但我不知道如何将 AnyObject 转换为 String 或 Int,因为我得到:
例如使用时:
我有 ResponseParser 类及其内部(responseReminders 是一个 AnyObjects 数组,来自 AFNetworking responseObject):
然后在 Reminder 类中我像这样初始化它(提醒为 AnyObject,但是是 Dictionary(String, AnyObject)):
println(reminderJSON["id"])
结果是:可选(3065522)
在这种情况下,如何将 AnyObject 向下转换为 String 或 Int?
//编辑
经过一些尝试,我提出了这个解决方案:
对于 Int 和
对于字符串
iphone - New Swift app Lister error: "No matching provisioning profiles found", "App ID with Identifier ... is not available"
I downloaded the sample code for the Lister app from Apple's developer website and am trying to build the Swift version to my iPhone 5S running iOS 8 Beta 5. I've changed everything to com.mycompany.Lister, but when I try to build it, it comes up with the following error.
No matching provisioning profiles found
None of the valid provisioning profiles allowed the specified entitlements: com.apple.developer.ubiquity-container-identifiers. Xcode can resolve this issue by downloading a new provisioning profile from the Member Center.
So I click "Fix Issue", it loads for a few seconds and comes back to me with this message:
An App ID with Identifier 'com.example.apple-samplecode.Lister.ListerToday' is not available. Please enter a different string.
I thought I had already changed everything to com.mycompany.Lister, but maybe I'm missing something hidden somewhere.
ios - swift Uilable错误线程1断点2.4
}
我需要帮助,我是新手swift
和编码,老实说我不是上帝,我无法弄清楚我的代码不会有什么,请帮忙!(错误在顶部,请看右边)我正在编写一个计算器(不知道这是否有帮助,但为什么没有)这是一个我无法修复的错误我尝试了很多东西但没有一个正在工作,它是一个单一视图应用程序,iPhone 5s
此代码来自viewcontroler
. swift
这是解码器和自我的东西,如果它们有用的话
如果您需要其他任何东西来解决问题,请发表评论
这就是我关闭断点并按下某些按钮时发生的事情(更多信息见评论)
2014-08-22 23:39:05.613 计算器 [6307:2641435] - [_TtC10calculator14ViewController plusTapped:]:无法识别的选择器发送到实例 0x7faad9dbd150 2014-08-22 23:39:05.617 计算器 [6307:2641435] * 终止应用程序uncaught exception 'NSInvalidArgumentException', reason: '-[_TtC10calculater14ViewController plusTapped:]: unrecognized selector sent to instance 0x7faad9dbd150' * First throw call stack: ( 0 CoreFoundation 0x00000001070f5055 exceptionPreprocess + 165 1 libobjc.A.dylib 0x0000000108bafa1c objc_exception_throw + 45 2 CoreFoundation 0x00000001070fbf1d - [NSObject(NSObject) doesNotRecognizeSelector:] + 205 3 CoreFoundation 0x0000000107054dbc ___forwarding_+ 988 4 CoreFoundation 0x0000000107054958 _CF_forwarding_prep_0 + 120 5 UIKit 0x0000000107974196 -[UIApplication sendAction:to:from:forEvent:] + 75 6 UIKit 0x0000000107a78c80 -[UIControl _sendActionsForEvents:withEvent:] + 467 7 UIKit 0x0000000107a7804f -[UIControl touchesEnded:withEvent:] + 522 8 UIKit 0x00000001079b9368 -[UIWindow _sendTouchesForEvent:] + 735 9 UIKit 0x00000001079b9c93 -[UIWindow sendEvent:] + 683 10 UIKit 0x0000000107986f51 -[UIApplication sendEvent:] + 246 11 UIKit 0x0000000107993ec6 _UIApplicationHandleEventFromQueueEvent + 17699 12 UIKit 0x000000010796fcd9 _UIApplicationHandleEventQueue + 1967 13 CoreFoundation 0x000000010702b0b1CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 17 14 CoreFoundation 0x000000010702099d __CFRunLoopDoSources0 + 269 15 CoreFoundation 0x000000010701ffd4 __CFRunLoopRun + 868 16 CoreFoundation 0x000000010701fa06 CFRunLoopRunSpecific + 470 17 GraphicsServices 0x000000010adbeabf GSEventRunModal + 161 18 UIKit 0x0000000107972cf8 UIApplicationMain + 1282 19 calculater 0x0000000106c7f6ed top_level_code + 77 20 calculater 0x0000000106c7f72a main + 42 21 libdyld.dylib 0x0000000109120145 start + 1 ) libc++abi.dylib: 以 NSException (lldb) 类型的未捕获异常终止
arrays - 使用 "+=" 运算符连接到可选数组
我正在尝试将多个字符串附加到数组中。此代码按预期工作:
这给了我一个错误:
这是一个错误,还是连接到一个不应该工作的可选数组?
xcode - Swift 类型推断在这里自相矛盾吗?
这是我的测试代码:
这是我在 Xcode6-beta6 中的 Swift 游乐场:
根据类型推断的规则,在c
逻辑上不抱怨与不抱怨不矛盾b
吗?
ios - 将 `Xcode 6` 从 `beta4` 更新为 `beta6` 后,我的应用程序在按钮单击操作时崩溃
我正在写 iOS swift 项目,今天我Xcode 6
从beta4
. beta6
它编译得很好,但是当我按下按钮时,它会在控制台中打印“lol”并崩溃。有我的代码:
你能帮助我吗?
ios - 致命错误:NSArray 元素无法匹配 Swift Array 元素类型
突然我开始收到运行时错误,因为,
我已将我的数组声明为,
现在,在我的服务器响应成功块中,
在升级到 Xcode6 Beta6 之前它工作得很好
(抱歉之前指错地方了!)
解决了 :
不知道,但我做了一些改变,它的工作原理,
lambda - Swift:在 lambda 中使用默认参数
我想对 lambda 的参数使用默认值,例如:
但是编译器似乎声明这是不可能的:
有什么好的解决方法吗?这在未来的版本中可能吗?