How to call an Objective-C Method from a C Method?

后端 未结 5 1009
慢半拍i
慢半拍i 2020-11-28 06:44

I have an Obj-C object with a bunch of methods inside of it. Sometimes a method needs to call another method inside the same object. I can\'t seem to figure out how to get

5条回答
  •  温柔的废话
    2020-11-28 07:43

    Another option to the answers given thus far is to use the objc_msgSend() function provided by the Objective-C runtime.

提交回复
热议问题