fixed problem with in replay ids
This commit is contained in:
parent
57d8c5f9ff
commit
7b4adc0f63
31 changed files with 578 additions and 491 deletions
22
TweetModel.m
Normal file
22
TweetModel.m
Normal file
|
@ -0,0 +1,22 @@
|
|||
//
|
||||
// TweetModel.m
|
||||
// Twittia 2
|
||||
//
|
||||
// Created by Jeena on 10.01.11.
|
||||
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#import "TweetModel.h"
|
||||
|
||||
|
||||
@implementation TweetModel
|
||||
|
||||
@synthesize text, inReplyTostatusId;
|
||||
|
||||
- (void)dealloc {
|
||||
[text release];
|
||||
[inReplyTostatusId release];
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
@end
|
Reference in a new issue