YAJL/YAJLiOS-0.3.1.zipの使用方法
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(YAJL/YAJLiOS-0.3.1.zipの使用方法);
*目次 [#ef5a1d45]
#contents
*参考情報 [#yd5bfcf3]
-[[YAJL]]
-ダウンロードページに纏められているYAJLiOS-0.3.1.zipがフ...
-[[Downloads · gabriel/yajl-objc:https://github.com/...
*ダウンロード [#t8f29d26]
-[[Downloads · gabriel/yajl-objc:https://github.com/...
*設定方法 [#wa47479a]
基本的に[[gabriel/yajl-objc · GitHub:https://github....
-YAJLiOS.frameworkをプロジェクトに追加する(Add Files To P...
-Build Phasesで、以下のフレームワークが存在することを確認。
--CoreGraphics.framework
--Foundation.framework
--UIKit.framework
-Build Settingsで
--Framework Search PathsにYAJLiOS.frameworkがリストされて...
--other Linker Flagsに-ObjC と-all_loadを追加。
-使用するソースファイルの先頭で#import <YAJLiOS/YAJL.h>を...
-使用方法は[[YAJL: YAJL:http://gabriel.github.com/yajl-ob...
#pre{{
NSString *JSONString = @"[1, 2, 3]";
NSArray *arrayFromString = [JSONString yajl_JSON];
for (int i = 0; i < arrayFromString.count; i++) {
NSLog(@"%@", [arrayFromString objectAtIndex:i]);
}
}}
終了行:
&tag(YAJL/YAJLiOS-0.3.1.zipの使用方法);
*目次 [#ef5a1d45]
#contents
*参考情報 [#yd5bfcf3]
-[[YAJL]]
-ダウンロードページに纏められているYAJLiOS-0.3.1.zipがフ...
-[[Downloads · gabriel/yajl-objc:https://github.com/...
*ダウンロード [#t8f29d26]
-[[Downloads · gabriel/yajl-objc:https://github.com/...
*設定方法 [#wa47479a]
基本的に[[gabriel/yajl-objc · GitHub:https://github....
-YAJLiOS.frameworkをプロジェクトに追加する(Add Files To P...
-Build Phasesで、以下のフレームワークが存在することを確認。
--CoreGraphics.framework
--Foundation.framework
--UIKit.framework
-Build Settingsで
--Framework Search PathsにYAJLiOS.frameworkがリストされて...
--other Linker Flagsに-ObjC と-all_loadを追加。
-使用するソースファイルの先頭で#import <YAJLiOS/YAJL.h>を...
-使用方法は[[YAJL: YAJL:http://gabriel.github.com/yajl-ob...
#pre{{
NSString *JSONString = @"[1, 2, 3]";
NSArray *arrayFromString = [JSONString yajl_JSON];
for (int i = 0; i < arrayFromString.count; i++) {
NSLog(@"%@", [arrayFromString objectAtIndex:i]);
}
}}
ページ名: