TIL asl – Apple System Log

Today I noticed a strange behaviour in my Xcode’s console. I was testing iOS app background launch, more specifically, the case when the app is launched in background due to Watch Connectivity sendMessage method called on watchOS side. I was using “Wait for the executable to be launched” to get some console logs, but noneContinue reading “TIL asl – Apple System Log”

TIL dynamic libraries are only partially loaded at launch in iOS

Recently I’ve stumbled on the issue that I didn’t receive a “Class is implemented in both” warning message, whereas I should’ve, because I referenced the same static library both from the app and indirectly through my custom dynamic framework. The reason was, even though I imported the dynamic framework, I never referenced its symbols. AFAIKContinue reading “TIL dynamic libraries are only partially loaded at launch in iOS”