ios9.2

iOS 9.2 : Not able to trust the Application manually, No Profile option available

主宰稳场 提交于 2019-12-07 21:50:20
问题 After Updating to iOS 9.2, we are not able to see the 'profile' section in 'general' option. I'm trying to test my app on my iPhone but when it runs it gives me a security error "Untrusted Developer" on my iPhone. I have no device profile setting on iOS or a trust button. Does anyone know how to get by this? 回答1: I found the answer here http://stackoverflow.com/questions/34260237/when-i-install-enterprise-app-in-phone6s-with-ios-9-2-but-i-cant-find-profiles Steps for Trust on iOS 9.2: Go to

iOS 9.2 : Not able to trust the Application manually, No Profile option available

99封情书 提交于 2019-12-06 05:10:43
After Updating to iOS 9.2, we are not able to see the 'profile' section in 'general' option. I'm trying to test my app on my iPhone but when it runs it gives me a security error "Untrusted Developer" on my iPhone. I have no device profile setting on iOS or a trust button. Does anyone know how to get by this? I found the answer here http://stackoverflow.com/questions/34260237/when-i-install-enterprise-app-in-phone6s-with-ios-9-2-but-i-cant-find-profiles Steps for Trust on iOS 9.2: Go to "Settings" Tap on "General" Tap on "Device Managment" Tap on "your Profile" (ex: balu corp) Tap on Trust

WKWebView viewport shrink-to-fit not working on iOS 9.3

非 Y 不嫁゛ 提交于 2019-12-04 23:08:21
问题 In iOS 9.2, a WKWebView rendering HTML with fixed-width tables bigger than the device width could be told to shrink the content to fit by adding a viewport tag like this: <meta name="viewport" content="width=device-width, shrink-to-fit=YES"> This line caused the WKWebView to effectively zoom out the viewport so that the entire rendered page fit in the view frame without the need for scrollbars. For example, consider the following code, when run in viewDidLoad in a vanilla single view app:

Notifications are not getting in iOS 9.2

旧街凉风 提交于 2019-12-04 20:55:10
Notifications are not getting after upgrade to iOS9.2 but up to iOS9.1 there is no such type of issue. But I didn't understand where was the problem. Is it iOS9.2 problem ? Can anyone help me out from this. Thanks in advance. iPhone 4s seems to be having little discrepancies in ios 9.2 like notification icons are coming but no vibrations or sound alerts are there. Are you using a iPhone 4s? 来源: https://stackoverflow.com/questions/34528733/notifications-are-not-getting-in-ios-9-2

WKWebView viewport shrink-to-fit not working on iOS 9.3

谁说胖子不能爱 提交于 2019-12-03 13:55:56
In iOS 9.2, a WKWebView rendering HTML with fixed-width tables bigger than the device width could be told to shrink the content to fit by adding a viewport tag like this: <meta name="viewport" content="width=device-width, shrink-to-fit=YES"> This line caused the WKWebView to effectively zoom out the viewport so that the entire rendered page fit in the view frame without the need for scrollbars. For example, consider the following code, when run in viewDidLoad in a vanilla single view app: WKWebViewConfiguration *wkWebConfig = [[WKWebViewConfiguration alloc] init]; WKWebView *newWebView = [

Daily Local Notification In Swift iOS 9.2

若如初见. 提交于 2019-12-01 12:25:10
问题 Trying to send a daily local notification in swift. However it just sends every minute for some reason. I want the first notification to send 30 mins after the app is opened and then repeat this notification everyday. in the swift fie i have the following code: //---------Daily notification code (also add section in app delagate---------- let theDate = NSDate() let dateComp = NSDateComponents() dateComp.minute = 30 let cal = NSCalendar.currentCalendar() let fireDate:NSDate = cal

Xcode 7.2: Failed to Locate or generated signing assets, Wild Card App IDs can not be used to create In House Provisioning Profiles

大兔子大兔子 提交于 2019-12-01 11:26:09
I signed an iOS App and WatchKit App & Extension targets with valid provisioning profiles (Separate provisioning profile for each app identifier, and not wild card App ID), Build was archived successfully but when I try to export/save Enterprise build, Xcode auto generate/locate XC: provisioning profile and it also and resets/invalidates previously selected provisioning profiles. I get below error. (even though we are not using Wild Card App IDs) "Failed to Locate or generated signing assets, Wild Card App IDs can not be used to create In House Provisioning Profiles". It seems like it is bug

dyld: Library not loaded: @rpath/libswiftCore.dylib

不问归期 提交于 2019-11-30 18:26:13
问题 I am getting this issue in my existing project and i tried to create new project then i run in device getting same issue dyld: Library not loaded: @rpath/libswiftCore.dylib Referenced from: /var/mobile/Containers/Bundle/Application/D14EA274-0C2B-457B-8E8F-494197978F34/Pro.app/Pro Reason: no suitable image found. Did find: /private/var/mobile/Containers/Bundle/Application/D14EA274-0C2B-457B-8E8F-494197978F34/Pro.app/Frameworks/libswiftCore.dylib: mmap() errno=1 validating first page of '

Xcode 8 build crash on iOS 9.2 and below

Deadly 提交于 2019-11-26 19:27:29
When I build my app with Xcode 8 GM Seed and run it on an iOS 9.2 below device OR simulator, I get strange EXC_BAD_ACCESS crashes during app startup or a few seconds after the app launched. The crash always happens in a different spot (adding a subview, [UIImage imageNamed:] , app delegate's main method etc). I don't get those crashes when I run it on iOS 9.3+ or 10 and I don't get them when I build with Xcode 7 and run on iOS 9.2 and below. Has anyone else experiences something similar? Is this a known issue with Xcode 8? See the accepted answer https://forums.developer.apple.com/thread/60919

Xcode 8 build crash on iOS 9.2 and below

微笑、不失礼 提交于 2019-11-26 07:56:49
问题 When I build my app with Xcode 8 GM Seed and run it on an iOS 9.2 below device OR simulator, I get strange EXC_BAD_ACCESS crashes during app startup or a few seconds after the app launched. The crash always happens in a different spot (adding a subview, [UIImage imageNamed:] , app delegate\'s main method etc). I don\'t get those crashes when I run it on iOS 9.3+ or 10 and I don\'t get them when I build with Xcode 7 and run on iOS 9.2 and below. Has anyone else experiences something similar?