Skip to content

Instantly share code, notes, and snippets.

@atljeremy
Created April 20, 2012 03:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atljeremy/2425658 to your computer and use it in GitHub Desktop.
Save atljeremy/2425658 to your computer and use it in GitHub Desktop.
Project 3 AOC - ViewController.h - Full Sail
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController <UIAlertViewDelegate>
- (int) add:(int)num1 with:(int)num2;
- (BOOL) compare:(int)num1 with:(int)num2;
- (NSString*) append:(NSString*)string1 with:(NSString*)string2;
- (void) displayAlertWithString:(NSString*)string andTitle:(NSString*)title;
- (void)showStringDialog;
- (void)showCompareStringDialog;
- (void)showNumberDialog;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment