]> git.saurik.com Git - uikittools.git/blame - uiopen.mm
Attempt to fix sbreload on 5.x.
[uikittools.git] / uiopen.mm
CommitLineData
2a72f832
JF
1#import <UIKit/UIKit.h>
2#include <stdio.h>
3
4int main(int argc, char *argv[]) {
5 if (argc != 2)
6 fprintf(stderr, "usage: %s <url>\n", argv[0]);
7 else {
8 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
9 [[UIApplication alloc] openURL:[NSURL URLWithString:[NSString stringWithUTF8String:argv[1]]]];
10 [pool release];
11 }
12
13 return 0;
14}