swifty-json Questions
3
Solved
Project files:
https://jumpshare.com/v/Otai3BBXYwfvyz8jb53k
(Would be wise to view these to see structure of project)
Problem:
Ok, so i'm following a tutorial that creates a UITableView with header...
Mauretta asked 29/1, 2016 at 1:26
1
Solved
I know with SwiftyJSON you can convert the objects from JSON to Swift.
Does SwiftyJSON allows you to go back? i.e. take NSManagedObjects with relationships and converting them it into JSON?
Examp...
Quinn asked 28/11, 2015 at 5:13
1
Solved
So my app is using a JSON API response to read some data from server. Since the API is not yet ready i want to use a sample JSON file which is stored in my app itself. Since all my code uses Swifty...
Barcus asked 15/11, 2015 at 6:58
2
Solved
let json = JSON(response.result.value!)
let things = json.array.map { jsonThing in
Thing()
}!
json.array returns an array of one hundred JSONs. After the call to map, I end up with a single T...
Underprivileged asked 27/10, 2015 at 16:8
4
Solved
This line has always been working fine for me for making Alamofire Requests and getting the JSON response.
Alamofire.request(req).responseJSON() {
(request, response, data, error) in
// ....
}...
Hallucinosis asked 22/9, 2015 at 17:44
1
Solved
So I currently have the following:
class ViewController: UIViewController {
class Identity{
let baseUrl = "superSecretURL"
var _username: String = ""
var _password: String = ""
var _apiKey: S...
Kearse asked 12/5, 2015 at 17:45
1
Solved
I'm having serious performance issues parsing JSON with SwiftyJson from our API and populating in core data.
The data is downloaded with Alamofire, which works nicely but parsing the JSON with Swif...
Savanna asked 25/3, 2015 at 9:44
1
Solved
I need to construct a JSON object in the format shown below.
{
"DeviceCredentials": {
"UniqueId": "sample string 1"
},
"Handovers": [
{
"Occasions": [
{
"Id": 1
},
{
"Id": 1
}
]
}
]...
Salts asked 26/2, 2015 at 10:7
1
I am new to swift and I am trying to parse some simple JSON data I am retrieving from a private API that I have. I am using the SwiftJSON library.
No matter what I do I cannot assign the variable ...
Hensel asked 25/1, 2015 at 1:16
2
Solved
I have a use case where I have an array of dictionaries and I need them as a json object:
var data = [Dictionary<String, String>]()
//append items
var bytes = NSJSONSerialization.dataWithJS...
Libertylibia asked 10/11, 2014 at 23:41
© 2022 - 2024 — McMap. All rights reserved.