* IDE使用objectAtIndex:XCODE 6 beta3版
*語言:斯威夫特+目標C如何迅速
這裏是我的代碼。
目標C代碼
@implementation arrayTest
{
NSMutableArray *mutableArray;
}
- (id) init {
self = [super init];
if(self) {
mutableArray = [[NSMutableArray alloc] init];
}
return self;
}
- (NSMutableArray *) getArray {
...
return mutableArray; // mutableArray = {2, 5, 10}
}
Swift代碼
var target = arrayTest.getArray() // target = {2, 5, 10}
for index in 1...10 {
for targetIndex in 1...target.count { // target.count = 3
if index == target.objectAtIndex(targetIndex-1) as Int {
println("GET")
} else {
println(index)
}
}
}
我想以下結果:
1 GET 3 4 GET 6 7 8 9 GET
但是,我的代碼給我的錯誤
libswift_stdlib_core.dylib`swift_dynamicCastObjCClassUnconditional:
0x107e385b0: pushq %rbp
...(skip)
0x107e385e4: leaq 0xa167(%rip), %rax ; "Swift dynamic cast failed"
0x107e385eb: movq %rax, 0x6e9de(%rip) ; gCRAnnotations + 8
0x107e385f2: int3
0x107e385f3: nopw %cs:(%rax,%rax)
。
if index == target.objectAtIndex(targetIndex-1) as Int {
// target.objectAtIndex(0) = 2 -> but type is not integer
我覺得這段代碼是不完整的。 但我找不到解決方案。
幫我TT
「 Swift動態轉換失敗「你的數組不包含'Int',請嘗試打印數組 –
它可能包含'NSNumber' ins tances。 – Sulthan