Im assuming that the hierarchy of a class/subclass relationship is the attributes you can assign to objects right? however how do you find out the code for those attributes, like if i wanted to tell the text that appears in the text field to stream across, how would give that attribute to this code?
#import <UIKit/UIKit.h>
@interface Basic_iPhone_AppAppDelegate : NSObject <UIApplicationDelegate>
{
IBOutlet UIWindow *window;
IBOutlet UITextField *textField; //would it be entered here???
IBOutlet UILabel *label; // or in between this code with brackets?
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
- (IBAction)clickid)sender;
@end
#import <UIKit/UIKit.h>
@interface Basic_iPhone_AppAppDelegate : NSObject <UIApplicationDelegate>
{
IBOutlet UIWindow *window;
IBOutlet UITextField *textField; //would it be entered here???
IBOutlet UILabel *label; // or in between this code with brackets?
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
- (IBAction)clickid)sender;
@end