|
|
|
|
|
by teacup50
4217 days ago
|
|
As you discovered, _stret/_fpret remain necessary. objc_msgSend()'s type is not expressible in C; the only time it is correct to call objc_msgSend without a cast is when calling a method IMP with the literal vararg type of id (*method) (id self, SEL sel, ...); In other words, essentially never. |
|