Created
April 20, 2012 03:21
-
-
Save atljeremy/2425658 to your computer and use it in GitHub Desktop.
Project 3 AOC - ViewController.h - Full Sail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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