So this is a pretty weird one.
First of all — it doesn’t happen when running the app via Xcode. Only when the app is running standalone on the device (deployed via TestFlight or iTunes).
I use a class called RMLStarReceiptPrinter
which is an interface for a portable, bluetooth receipt printer. It all works fine while running in debug mode while the device (iPhone/iPad) is connected to Xcode on dev machine.
If I run it in standalone mode, I get -[RMLStarReceiptPrinter th:]: unrecognized selector sent to instance
error. But, th:
method doesn’t exist in RMLStarReceiptPrinter
and is never called! Another time when I ran it, it errored with the same message but selector ex:
, which doesn’t exist either. But there are methods which contain th
and ex
substrings in their name, which tells me some kind of weird memory leak or another form of corruption makes the app send the wrong selector name. Is that possible?
Bonus: I thought that when I compile in release mode (which I do in this case), the package doesn’t contain symbol tables, so how come in the error logs there are class and selector names?
I can only answer the bonus part of your question, and not the actual problem.
Objective-C uses dynamic dispatch (or messaging) to invoke methods. Every method invocation goes through the following steps:
The Objective-C dispatch table is assembled at runtime, and can even be modified at runtime. Its the latter feature that makes objective-C a dynamic language, despite being otherwise low level. For instance, we can do the following:
Anyway, in order to be easily programmed at runtime, messaging information is all in plain text both in debug and release mode. (Swift adds some name mangling to provide transparent namespaces).
Debugging suggestion:
Have you tried implementing those methods with a category as follows?
. . this might shed some light on where things are going wrong. However, although you can add these methods via a category, and get some insight, if the class is not something your have source for, it might be necessary to work with the vendor to actually resolve the problem. (Unless you're game to try runtime patching!).