objective c - Guide about subclassing -


i'd create subclass of uialertview implement own defaut behaviors when users click on dialog's buttons.

it awesome if guide me through or point me guide subclassing?

thanks!

there not subclassing in objective c.

the standard syntax looks this.

@interface nsobjectsubclassedobject : nsobject {  } 

two things mention: multi-inheritance not supported , there's method "subclass" objects called categories.


Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -