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

25
Mac/PostModel.m Normal file
View file

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