/samples/05 - multi-device form factor/RottenTomatoes/main.m

http://github.com/triceam/app-UI · Objective C · 35 lines · 7 code · 3 blank · 25 comment · 0 complexity · c152e57dfcf7d465ca5b6f9abc0c0f97 MD5 · raw file

  1. /*
  2. Licensed to the Apache Software Foundation (ASF) under one
  3. or more contributor license agreements. See the NOTICE file
  4. distributed with this work for additional information
  5. regarding copyright ownership. The ASF licenses this file
  6. to you under the Apache License, Version 2.0 (the
  7. "License"); you may not use this file except in compliance
  8. with the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing,
  11. software distributed under the License is distributed on an
  12. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  13. KIND, either express or implied. See the License for the
  14. specific language governing permissions and limitations
  15. under the License.
  16. */
  17. //
  18. // main.m
  19. // RottenTomatoes
  20. //
  21. // Created by Andrew Trice on 3/5/12.
  22. // Copyright Adobe Systems 2012. All rights reserved.
  23. //
  24. #import <UIKit/UIKit.h>
  25. int main(int argc, char *argv[]) {
  26. NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  27. int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");
  28. [pool release];
  29. return retVal;
  30. }