Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

class_addMethod on iphone (objective-c)

I'm trying to use the answer accepted here: Dynamic UIMenuItems with @selector and dynamic methods But it gives a warning (and it doesn't work) of: implicit declaration of function 'class_addMethod'

I have searched google but have no idea?

like image 363
Jonathan. Avatar asked Dec 13 '22 19:12

Jonathan.


1 Answers

Add #include <objc/runtime.h> to the top of your implementation file (.m or .c).

like image 68
Jonathan Grynspan Avatar answered Dec 30 '22 12:12

Jonathan Grynspan