mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-21 19:42:59 +08:00
19 lines
299 B
Objective-C
19 lines
299 B
Objective-C
//
|
|
// RKTweet.m
|
|
// RKTwitter
|
|
//
|
|
// Created by Blake Watters on 9/5/10.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKTweet.h"
|
|
|
|
@implementation RKTweet
|
|
|
|
- (NSString *)description
|
|
{
|
|
return [NSString stringWithFormat:@"%@ (ID: %@)", self.text, self.statusID];
|
|
}
|
|
|
|
@end
|