As per my knowledge, the OS architecture is generally used to speed up our OS and adding new features with higher memory management. But, in iOS I am a little bit confused regarding architecture, which we generally set in our app as below:
Architectures - Standard Architecture (armv7,arm64) Valid Architectures - armv7,arm64,armv7s.
Due to this we are getting many warnings related to datatype sizes and conversion because 64-bit architecture is the use of processors that have datapath widths, integer size, and memory address widths of 64 bits.
So my question is: I want to understand what mechanism will work behind this while I am generating IPA file for 32 bit supported architecture or 64 bit architecture (I know now after XCode-6 we will only built our app with 64 bit architecture with Bitcode enabled in our app for reduce our app size.)
Can anyone help me on this to understand architecture mechanism specially in IOS?