Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Objective-C Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Objective-C) Modify Parts of JSON Document

Demonstrates how to modify parts of a JSON document. This example uses the following JSON document:

{
   "fruit": [
      	{
         "kind": "apple",
	 "count": 24,
	 "fresh": true,
	 "extraInfo": null,
	 "listA": [ "abc", 1, null, false ],
	 "objectB": { "animal" : "monkey" }
      	},
	{
         "kind": "pear",
	 "count": 18,
	 "fresh": false,
	 "extraInfo": null
	 "listA": [ "xyz", 24, null, true ],
	 "objectB": { "animal" : "lemur" }
	}
    ],
    "list" : [ "banana", 12, true, null, "orange", 12.5, { "ticker": "AAPL" }, [ 1, 2, 3, 4, 5 ] ],
    "alien" : true
}

Chilkat Objective-C Library Downloads

MAC OS X (Cocoa) Libs

iOS Libs

#import <CkoJsonObject.h>
#import <CkoJsonArray.h>

CkoJsonObject *json = [[CkoJsonObject alloc] init];

// Load the JSON from a file.
BOOL success = [json LoadFile: @"qa_data/json/modifySample.json"];
if (success != YES) {
    NSLog(@"%@",json.LastErrorText);
    return;
}

// This example will not check for errors (i.e. null / false / 0 return values)...

// Get the "list" array:
CkoJsonArray *listA = [json ArrayOf: @"list"];

// Modify values in the list.

// Change banana to plantain
success = [listA SetStringAt: [NSNumber numberWithInt: 0] value: @"plantain"];

// Change 12 to 24
success = [listA SetIntAt: [NSNumber numberWithInt: 1] value: [NSNumber numberWithInt: 24]];

// Change true to false
success = [listA SetBoolAt: [NSNumber numberWithInt: 2] value: NO];

// Is the 3rd item null?
BOOL bNull = [listA IsNullAt: [NSNumber numberWithInt: 3]];

// Change "orange" to 32.
success = [listA SetIntAt: [NSNumber numberWithInt: 4] value: [NSNumber numberWithInt: 32]];

// Change 12.5 to 31.2
success = [listA SetNumberAt: [NSNumber numberWithInt: 5] value: @"31.2"];

// Replace the { "ticker" : "AAPL" } object with { "ticker" : "GOOG" }
// Do this by deleting, then inserting a new object at the same location.
success = [listA DeleteAt: [NSNumber numberWithInt: 6]];
success = [listA AddObjectAt: [NSNumber numberWithInt: 6]];
CkoJsonObject *tickerObj = [listA ObjectAt: [NSNumber numberWithInt: 6]];
success = [tickerObj AddStringAt: [NSNumber numberWithInt: -1] name: @"ticker" value: @"GOOG"];

// Replace "[ 1, 2, 3, 4, 5 ]" with "[ "apple", 22, true, null, 1080.25 ]"
success = [listA DeleteAt: [NSNumber numberWithInt: 7]];
success = [listA AddArrayAt: [NSNumber numberWithInt: 7]];
CkoJsonArray *aa = [listA ArrayAt: [NSNumber numberWithInt: 7]];
success = [aa AddStringAt: [NSNumber numberWithInt: -1] value: @"apple"];
success = [aa AddIntAt: [NSNumber numberWithInt: -1] value: [NSNumber numberWithInt: 22]];
success = [aa AddBoolAt: [NSNumber numberWithInt: -1] value: YES];
success = [aa AddNullAt: [NSNumber numberWithInt: -1]];
success = [aa AddNumberAt: [NSNumber numberWithInt: -1] numericStr: @"1080.25"];

// Get the "fruit" array
CkoJsonArray *aFruit = [json ArrayAt: [NSNumber numberWithInt: 0]];

// Get the 1st element:
CkoJsonObject *appleObj = [aFruit ObjectAt: [NSNumber numberWithInt: 0]];

// Modify values by member name:
success = [appleObj SetStringOf: @"fruit" value: @"fuji_apple"];
success = [appleObj SetIntOf: @"count" value: [NSNumber numberWithInt: 46]];
success = [appleObj SetBoolOf: @"fresh" value: NO];
success = [appleObj SetStringOf: @"extraInfo" value: @"developed by growers at the Tohoku Research Station in Fujisaki"];

// Modify values by index:
CkoJsonObject *pearObj = [aFruit ObjectAt: [NSNumber numberWithInt: 1]];
success = [pearObj SetStringAt: [NSNumber numberWithInt: 0] value: @"bartlett_pear"];
success = [pearObj SetIntAt: [NSNumber numberWithInt: 1] value: [NSNumber numberWithInt: 12]];
success = [pearObj SetBoolAt: [NSNumber numberWithInt: 2] value: NO];
success = [pearObj SetStringAt: [NSNumber numberWithInt: 3] value: @"harvested in late August to early September"];

json.EmitCompact = NO;
NSLog(@"%@",[json Emit]);
 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.