Am 14.04.24 um 22:32 schrieb Theo Buehler:
or are these .objc_* symbols somehow special?
Those are all .objc_sel_name*. Those are symbols that just contain the selector name as a string. That's a selector being *used*, not exported. They're pretty similar to local symbols, however, they're not so that the linker can possibly merge and de-duplicate them.
So yeah, everything .objc_sel_name* can safely be ignored. -- Jonathan