TwitterをObjective-Cから使う6(MGTwitterEngineのパーサと利用可能なAPIの対応)

MGTwitterEngineで利用可能なAPIですが、利用するパーサによって違うようです。ソースをみたところ下記のようになっていました。

Twitter API json xml
yajl touch json libxml2 NSXMLParser
direct_messages/destroy/[updateID].[FORMAT]
direct_messages/new.[FORMAT]
direct_messages.[FORMAT]
direct_messages/sent.[FORMAT]
account/end_session      
account/update_profile_background_image.[FORMAT]      
account/update_profile_image.[FORMAT]      
account/rate_limit_status.[FORMAT]
friendships/exists.[FORMAT]
help/downtime_schedule.[FORMAT]
help/test.[FORMAT]
search.[FORMAT]    
trends/current.[FORMAT]    
followers/ids.[FORMAT]  
friends/ids.[FORMAT]  
favorites/create/[updateID].[FORMAT]
favorites/destroy/[updateID].[FORMAT]
statuses/destroy/[updateID].[FORMAT]
statuses/retweet/[tweetID].[FORMAT]
statuses/show/[updateID].[FORMAT]
statuses/update.[FORMAT]
favorites.[FORMAT]
statuses/friends_timeline.[FORMAT]
statuses/home_timeline.[FORMAT]
statuses/public_timeline.[FORMAT]
statuses/replies.[FORMAT]
statuses/user_timeline.[FORMAT]
account/update_delivery_device.[FORMAT]
account/update_location.[FORMAT]
account/verify_credentials.[FORMAT]
blocks/create/[username].[FORMAT]
blocks/destroy/[username].[FORMAT]
friendships/create/[username].[FORMAT]
friendships/destroy/[username].[FORMAT]
notifications/follow/[username].[FORMAT]
notifications/leave/[username].[FORMAT]
users/show.[FORMAT]
users/show/[username or ID].[FORMAT]
[username]/lists.[FORMAT]    
[username]/lists.[FORMAT]    
[username]/lists/[listID].[FORMAT]    
[username]/lists/[listID].[FORMAT]    
statuses/featured.[FORMAT]
statuses/followers.[FORMAT]
statuses/friends.[FORMAT]
users/lookup.[FORMAT]?user_id=[userIDs]
touch jsonが万能な感じですが、実際に動かして確認した訳ではない点はご容赦ください。あとは利用したいAPIと速度、メモリの消費などでパーサを選択してください。