[ios] Minor code cleanup

This commit is contained in:
Alex Zolotarev 2011-08-07 21:02:05 +02:00 committed by Alex Zolotarev
parent 0cb6298cd1
commit 24b338af72
2 changed files with 0 additions and 29 deletions

View file

@ -30,12 +30,8 @@
bool m_mapIsVisible;
}
- (id) initWithCoder: (NSCoder *)coder;
- (void) ZoomToRect: (m2::RectD const &) rect;
//- (void) UpdateIcon: (NSTimer *)theTimer;
- (void) onResize: (GLint)width withHeight: (GLint)height;
- (void) onPaint;
@ -49,7 +45,5 @@
- (IBAction)OnGuideClicked:(id)sender;
@property (nonatomic, retain) IBOutlet UIBarButtonItem * m_myPositionButton;
@property (nonatomic, retain) NSTimer * m_iconTimer;
@property (nonatomic, assign) int m_iconSequenceNumber;
@end

View file

@ -17,8 +17,6 @@ typedef Framework<model::FeaturesFetcher> framework_t;
@implementation MapViewController
@synthesize m_myPositionButton;
@synthesize m_iconTimer;
@synthesize m_iconSequenceNumber;
// @TODO Make m_framework and m_storage MapsAppDelegate properties instead of global variables.
framework_t * m_framework = NULL;
@ -30,27 +28,6 @@ storage::Storage m_storage;
m_framework->ShowRect(rect);
}
- (void)UpdateIcon:(NSTimer *)theTimer
{
/* m_iconSequenceNumber = (m_iconSequenceNumber + 1) % 8;
int iconNum = m_iconSequenceNumber;
if (iconNum > 4)
iconNum = 8 - iconNum;
NSString * iconName = [[NSString alloc] initWithFormat:@"location-%d.png", iconNum];
m_myPositionButton.image = [UIImage imageNamed:iconName];
[iconName release];
[m_iconTimer invalidate];
m_iconTimer = [NSTimer scheduledTimerWithTimeInterval:0.1f
target:self
selector:@selector(UpdateIcon:)
userInfo:nil
repeats:NO];
*/
}
- (void)OnLocationUpdated
{
m_myPositionButton.image = [UIImage imageNamed:@"location.png"];