MGTwitterEngine에서 Timeline 가져오는 방법

2010. 7. 15. 11:06아이폰 개발

 [twitterEngine getUserTimelineFor:@"id" sinceID:nil startingAtPage:0 count:5];

getUserTimelineFor 메소드를 이용하여 timeline을 요청하면 statusesReceived 콜백 함수를 통해서 결과값을 넘겨준다.

이때 넘어오는 NSArray의 오브젝트는 NSDictionary 타입이다.

8개의 키를 가지고 있는데, 트윗 내용은 "text"키를 이용하여 가져오면 된다.

- (void)statusesReceived:(NSArray *)statuses forRequest:(NSString *)connectionIdentifier
{
    NSLog(@"Got statuses for %@:\r%@", connectionIdentifier, statuses); 
}

NSDictionary를 처음 공부할 때 한번 써봤을 뿐이고...

결과값이 저장된 오브젝트가 NSDictionary 형인지 몰라서 좀 헤멨을 뿐이고...

할 일은 많은 데 이런 데서 시간 빼앗겼을 뿐이고...