37070e482d
[FIXED] UI Quirks in iOS 6 and iOS 7.
42 lines
1.0 KiB
Objective-C
42 lines
1.0 KiB
Objective-C
/**
|
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
|
*
|
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
*
|
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
*/
|
|
|
|
//
|
|
// MPAppViewController
|
|
//
|
|
// Created by Maarten Billemont on 2012-08-31.
|
|
// Copyright 2012 lhunath (Maarten Billemont). All rights reserved.
|
|
//
|
|
|
|
#import "MPAppViewController.h"
|
|
|
|
@implementation MPAppViewController {
|
|
}
|
|
|
|
- (IBAction)gorillas:(UIButton *)sender {
|
|
|
|
MPCheckpoint( MPCheckpointApp, @{
|
|
@"app" : @"gorillas"
|
|
} );
|
|
|
|
[UIApp openURL:[NSURL URLWithString:@"http://itunes.apple.com/app/lyndir/gorillas/id302275459?mt=8"]];
|
|
}
|
|
|
|
- (IBAction)deblock:(UIButton *)sender {
|
|
|
|
MPCheckpoint( MPCheckpointApp, @{
|
|
@"app" : @"deblock"
|
|
} );
|
|
|
|
[UIApp openURL:[NSURL URLWithString:@"http://itunes.apple.com/app/lyndir/deblock/id325058485?mt=8"]];
|
|
}
|
|
|
|
@end
|