GeocoderDemo/main.m
/* |
Copyright (C) 2014 Apple Inc. All Rights Reserved. |
See LICENSE.txt for this sample’s licensing information |
Abstract: |
Main source file to this sample application. |
*/ |
#import <UIKit/UIKit.h> |
#import "GeocoderDemoAppDelegate.h" |
int main(int argc, char *argv[]) |
{ |
@autoreleasepool { |
int retVal = UIApplicationMain(argc, argv, nil, NSStringFromClass([GeocoderDemoAppDelegate class])); |
return retVal; |
} |
} |