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

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -