Back to Howawan's Homepage to index to Yahoo's Homepage

iPhone2-0902042220/Obj-Cの構文 ......

inhalts

iPhon2-0902042220@

  1. [object method:arg1];
  2. [obj method:arg1 label:arg2];
  3. method 宣言 - (const-type)method:(type of arg1*)arg1 label:(type of arg2*)arg2;
  4. class 宣言
    @interface class name:parent class name
    {
    int age;
    NSString* firstName;
    NSString* lastName;
    (instance variable)
    }
    - (BOOL)is Adult; method statement
    @end
  5. @property(retain)type* name; propertyの実体は method
    実装は @synthesize propertyname;