MGTwitterEngine/古い内容
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(MGTwitterEngine/古い内容);
*目次 [#nfc6099c]
#contents
*参考情報 [#mf7fa2bb]
-[[MGTwitterEngine]]
*ダウンロード [#l30f5f52]
http://github.com/mattgemmell/MGTwitterEngineからダウンロ...
git clone http://github.com/mattgemmell/MGTwitterEngine....
自分用
git clone git@github.com:src256/MGTwitterEngine.git
*サンプルプロジェクト作成 [#xccec75a]
**Xcodeでプロジェクト作成 [#j10fdee1]
-種類はなんでもよいのでXcodeで新規プロジェクトを作成する。
**MGTwitterEngineのソースを追加 [#w44a874a]
-わかりやすいようにMGTwitterEngineというグループを作って...
**OAuthConsumerのソースコードを取得 [#lb5bd7a2]
-[[OAuthConsumer]]のソースコードをダウンロードして、プロ...
**YAJLのソースコードを取得 [#ied6bbb5]
-[[YAJL]]のヘッダ&ライブラリをダウンロードして追加する。...
-プロジェクトの設定の「他のリンカフラグ(OTHER_LDFLAGS)」(...
Under 'Other Linker Flags' in the Test target, add -ObjC...
-MGTwitterEngineGlobalHeader.hを編集する
#define YAJL_AVAILABLE 1
**TouchJSON関連ファイルの除去 [#jbd7314b]
-最近TouchJSONというJSONライブラリを使うこともできるよう...
-今回はYAJLを使うのでTouchJSON関連のファイルを除去してお...
**libxmlの設定 [#me8f1b34]
-MGTwitterEngine.mの最初のほうを変更
# define USE_LIBXML 1
-ヘッダ検索パスに追加
$SDKROOT/usr/include/libxml2
-ライブラリの追加。Frameworksで右クリックし、追加→既存の...
**タイムラインの取得 [#xfb923fa]
RootViewController.mのviewDidLoadなどで試しによびだしてみ...
※以下のサンプルコードはBASIC認証を使っているが、本当は使...
#pre{{
#import "MGTwitterEngine"
- (void)viewDidLoad {
//(省略)
MGTwitterEngine *twitterEngine = [[MGTwitterEngine al...
[twitterEngine setUsername:@"xxxx" password:@"yyyyy"];
[twitterEngine getFollowedTimelineSinceID:0 startingA...
}
- (void)statusesReceived:(NSArray *)statuses forRequest:(...
//成功した場合
for (NSDictionary *status in statuses) {
NSLog(@"Tweet Text: %@", [status objectForKey:@"t...
}
}
- (void)requestFailed:(NSString *)connectionIdentifier wi...
//失敗した場合
NSLog(@"Request failed for connectionIdentifier = %@,...
connectionIdentifier,
[error localizedDescription],
[error userInfo]);
}
}}
*xAuth対応 [#c58174dc]
-[[Life in School and Startup » Switching from Basic...
終了行:
&tag(MGTwitterEngine/古い内容);
*目次 [#nfc6099c]
#contents
*参考情報 [#mf7fa2bb]
-[[MGTwitterEngine]]
*ダウンロード [#l30f5f52]
http://github.com/mattgemmell/MGTwitterEngineからダウンロ...
git clone http://github.com/mattgemmell/MGTwitterEngine....
自分用
git clone git@github.com:src256/MGTwitterEngine.git
*サンプルプロジェクト作成 [#xccec75a]
**Xcodeでプロジェクト作成 [#j10fdee1]
-種類はなんでもよいのでXcodeで新規プロジェクトを作成する。
**MGTwitterEngineのソースを追加 [#w44a874a]
-わかりやすいようにMGTwitterEngineというグループを作って...
**OAuthConsumerのソースコードを取得 [#lb5bd7a2]
-[[OAuthConsumer]]のソースコードをダウンロードして、プロ...
**YAJLのソースコードを取得 [#ied6bbb5]
-[[YAJL]]のヘッダ&ライブラリをダウンロードして追加する。...
-プロジェクトの設定の「他のリンカフラグ(OTHER_LDFLAGS)」(...
Under 'Other Linker Flags' in the Test target, add -ObjC...
-MGTwitterEngineGlobalHeader.hを編集する
#define YAJL_AVAILABLE 1
**TouchJSON関連ファイルの除去 [#jbd7314b]
-最近TouchJSONというJSONライブラリを使うこともできるよう...
-今回はYAJLを使うのでTouchJSON関連のファイルを除去してお...
**libxmlの設定 [#me8f1b34]
-MGTwitterEngine.mの最初のほうを変更
# define USE_LIBXML 1
-ヘッダ検索パスに追加
$SDKROOT/usr/include/libxml2
-ライブラリの追加。Frameworksで右クリックし、追加→既存の...
**タイムラインの取得 [#xfb923fa]
RootViewController.mのviewDidLoadなどで試しによびだしてみ...
※以下のサンプルコードはBASIC認証を使っているが、本当は使...
#pre{{
#import "MGTwitterEngine"
- (void)viewDidLoad {
//(省略)
MGTwitterEngine *twitterEngine = [[MGTwitterEngine al...
[twitterEngine setUsername:@"xxxx" password:@"yyyyy"];
[twitterEngine getFollowedTimelineSinceID:0 startingA...
}
- (void)statusesReceived:(NSArray *)statuses forRequest:(...
//成功した場合
for (NSDictionary *status in statuses) {
NSLog(@"Tweet Text: %@", [status objectForKey:@"t...
}
}
- (void)requestFailed:(NSString *)connectionIdentifier wi...
//失敗した場合
NSLog(@"Request failed for connectionIdentifier = %@,...
connectionIdentifier,
[error localizedDescription],
[error userInfo]);
}
}}
*xAuth対応 [#c58174dc]
-[[Life in School and Startup » Switching from Basic...
ページ名: