Back to Howawan's Homepage
to index
to Yahoo's Homepage
Cmemo3-0902042210/Obj-Cの構文 ......
inhalts
Cmemo3-0902042210@
- [object method:arg1];
- [obj method:arg1 label:arg2];
- method 宣言
- (const-type)method:(type of arg1*)arg1
label:(type of arg2*)arg2;
- class 宣言
@interface class name:parent class name
{
int age;
NSString* firstName;
NSString* lastName;
(instance variable)
}
- (BOOL)is Adult; method statement
@end
- @property(retain)type* name;
propertyの実体は method
実装は @synthesize propertyname;