For transitioning my app to 64-bit, I changed the Architectures build setting to:
ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
App is runnig fine except that some of the images are not showing up (blank). Why would it happen? any clues?
For transitioning my app to 64-bit, I changed the Architectures build setting to:
ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)";
App is runnig fine except that some of the images are not showing up (blank). Why would it happen? any clues?
Answer lies here:
https://devforums.apple.com/message/922989#922989
I found the reason. In a viewController, which was not yet allocated, but included in the app, there was following implemented (in the .m-file above implementation viewController):
Putting above in comment solved the problem, even though the button which didn't display the image wasn't in a scrollview.
It fixed my issue to change
to:
Update the Data structure used in code according to 64 bits for example replace
Float
withCGFloat
,(if not working Than also changeint
type withNSInteger
)see here for more information
In my case replace
Float
withCGFloat
and solve my problem (simplest way to replacefloat
toCGFloat
)Write in .pch file and check it working or not.
Thanks