hi all,
i have lots of questions, for which i did not get any answers from other firums. request your help for below doubts. it's ok to say "not possible" 🙂
My application pairs with a bluetooth device using obj c code. Everything works fine except that in between the wizard, system pops up an alert "do you want to pair with this device ? yes no". is there a way to silently pair the device without showing this alert ?
I have a requirement in my application that If for some reason my application malfunctions or crashes while running, user needs to be able to send diagonistic data to customer support. Is ther any third party application available which does this ?
in my application, some colors are industry standard, which should not change. but when i go to settings and do "switch color settings", my app's control colors change. how to make my app independent of color change in settings ?
Is it possible not to change my applications font size when the font size changes in settings of ios {in accessibility settings} ? Any hack solution would also do. I observed that the control which takes default font (when i dont specify any,) they change by accessibility font change, but others where i dynamically assign font family and sizes, font size does not change on accessibility font change.
at the worst case, is it possible to figure out inside my app through objc code that my phone is running in accessibility mode, so that i can display an alert ?
I am required to wake up my application when bluetooth pairing happensin ios. I see that the ios app can listen to external accessory, can any gentle soul please throw light to docs or sample codes or work arounds please ? wake up means while the app is in closed state, not in background running.
my initial research pointed towards below links.
http://stackoverflow.com/questions/21446721/wake-up-ios-app-when-a-bluetooth-device-is-near-by
http://stackoverflow.com/questions/19932090/how-to-wake-up-ios-app-with-bluetooth-signal-ble
the last person's answer in both the posts indicate towards that it is possible. my doubt is for exactly what event i can wake up my application from closed state (i mean the user closed the app from background apps list ) ?
My further investigation revealed that in my app-info.plist, requiredbackgroundmodes is set to "App communicates using bluetooth"
Still the app does not receive any entry point when it is in stopped state upon bluetooth data arrival ! this is kinda baffling me.
should this go to didFinishLaunchingAppWithOptions ? should that be the entry point or something else ?
thanks