fixed problem with in replay ids

This commit is contained in:
Jeena Paradies 2011-01-10 17:01:06 +01:00
parent 57d8c5f9ff
commit 7b4adc0f63
31 changed files with 578 additions and 491 deletions

22
TweetModel.m Normal file
View 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