2014-07-25 8 views
6

Dopo aver creato un'app con RubyMotion, questa è la mia prima esperienza con lo sviluppo di app in Swift con xCode.Trasmissione dinamica rapida non riuscita con richiesta HTTP GET

Io uso il seguente codice per ottenere tutti i post da un'API di Rails, la richiesta è andata a buon fine ma l'analisi del JSON restituisce un errore.

Il codice:

func loadData() { 
    let url = NSURL(string: "http://localhost:3000/api/posts") 
    let task = NSURLSession.sharedSession().dataTaskWithURL(url, completionHandler: {(data, response, error) in 
     var err: NSError? 
     var json = NSJSONSerialization.JSONObjectWithData(data, options: .MutableLeaves, error: &err) as NSDictionary 
    }) 
    task.resume() 
} 

L'errore:

libswift_stdlib_core.dylib`swift_dynamicCastObjCClassUnconditional: 
0x103dbae20: pushq %rbp 
0x103dbae21: movq %rsp, %rbp 
0x103dbae24: pushq %rbx 
0x103dbae25: pushq %rax 
0x103dbae26: movq %rsi, %rcx 
0x103dbae29: movq %rdi, %rbx 
0x103dbae2c: xorl %eax, %eax 
0x103dbae2e: testq %rbx, %rbx 
0x103dbae31: je  0x103dbae4d    ;  swift_dynamicCastObjCClassUnconditional + 45 
0x103dbae33: movq 0x72b66(%rip), %rsi  ; "isKindOfClass:" 
0x103dbae3a: movq %rbx, %rdi 
0x103dbae3d: movq %rcx, %rdx 
0x103dbae40: callq *0x5e212(%rip)   ; (void *)0x0000000105b6f000: objc_msgSend 
0x103dbae46: testb %al, %al 
0x103dbae48: movq %rbx, %rax 
0x103dbae4b: je  0x103dbae54    ;  swift_dynamicCastObjCClassUnconditional +  52 
0x103dbae4d: addq $0x8, %rsp 
0x103dbae51: popq %rbx 
0x103dbae52: popq %rbp 
0x103dbae53: retq 
0x103dbae54: leaq 0xe427(%rip), %rax  ; "Swift dynamic cast failed" 
0x103dbae5b: movq %rax, 0x7974e(%rip)  ; gCRAnnotations + 8 
0x103dbae62: int3 
0x103dbae63: nopw %cs:(%rax,%rax) 

Grazie in anticipo!

+1

Puoi condividere JSON che Ricevi? Presumo che tu riceva una serie di oggetti, quindi dovresti trasmettere a 'NSArray'. – Keenle

+0

Era davvero una serie di oggetti. Con la modifica di NSDictionary a NSArray il problema è risolto. Grazie per l'aiuto! –

risposta

6

Dal tuo URL http://localhost:3000/api/posts posso supporre che si riceve un array di oggetti, in modo da dovresti trasmettere il risultato a NSArray.

codice dovrebbe essere:

var json = NSJSONSerialization.JSONObjectWithData(data, options: .MutableLeaves, error: &err) as NSArray 

Tuttavia come detto da Yatheesha, è possibile ricevere nulla quindi è meglio di gettare a matrice annullabile e il check-in if let...:

if let json = NSJSONSerialization.JSONObjectWithData(data, options: .MutableLeaves, error: &err) as? NSArray { 
    ... 
} 
1

i dati eventualmente nil quindi si otterrà nil da NSJSONSerialization.JSONObjectWithData() quindi digitare porta a mandare in crash colata, Prova questo

func loadData() { 
    let url = NSURL(string: "http://localhost:3000/api/posts") 
    let task = NSURLSession.sharedSession().dataTaskWithURL(url, completionHandler: {(data, response, error) in 
     var err: NSError? 
     if let json = NSJSONSerialization.JSONObjectWithData(data, options: .MutableLeaves, error: &err) as? NSArray { 

       //Valid NSArray object 
      } 
     else { 
      //NSArray is nil 
     } 
      }) 
     task.resume() 
     } 
+1

Grazie per il tuo aiuto, ora l'app non si arresta più ma non ottiene ancora un risultato. Usando il consiglio di Keenie, ora funziona. Grazie anche per la rapida risposta! –