added add/show geolocation and changed name from TweetModel to PostModel

This commit is contained in:
Jeena Paradies 2012-11-22 19:21:38 +01:00
parent d39b643844
commit 76b63d5c68
12 changed files with 398 additions and 50 deletions

View file

@ -1,23 +0,0 @@
//
// TweetModel.m
// Tentia
//
// Created by Jeena on 10.01.11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "TweetModel.h"
@implementation TweetModel
@synthesize text, inReplyTostatusId, inReplyToEntity;
- (void)dealloc {
[text release];
[inReplyTostatusId release];
[inReplyToEntity release];
[super dealloc];
}
@end