when I archive my iOS app I get the following errors:
ld: warning: alignment lost in merging tentative definition _isDragging
ld: warning: alignment lost in merging tentative definition _isLoading
Could someone please tell me what’s wrong and where should I look for…
Thanks!
I just ran into this same issue. I’m assuming that _isDragging and _isLoading are global variables that you declared somewhere. If that is so, make sure you declare both as
externin your .h file thusly:MyFile.h
MyFile.m
Hope this helps!