ios9.1

iPad Pro launch image and App icon

匆匆过客 提交于 2019-11-28 10:48:32
iPad Pro requires 167x167 App icon and 2732 x 2048 (landscape) launch image. But where should I put them? Xcode 7.1 Asset Catalogs don't provide any place to add iPad Pro specific icons or images. My launch image is size specific, so using storyboard for this isn't a good option. Stan Apple commented on this issue: "Latest beta (7.2b3) added 83.5@2x app icon slot to asset catalogs, and Developer relations reported in a radar comment that they no longer support launch images and will not be adding the iPad pro launch image size to asset catalogs." Taken from here . Slyv Use Launch Screen

'Communications error: <OS_xpc_error:' while recording video

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-27 23:10:39
问题 I am recording video using my application for 4-5 minutes, each time application shows following message in console and crashes. warning: could not load any Objective-C class information from the dyld shared cache. This will significantly reduce the quality of type information available. Communications error: <OS_xpc_error: <error: 0x19d846af0> { count = 1, contents = "XPCErrorDescription" => <string: 0x19d846e50> { length = 22, contents = "Connection interrupted" } }> iOS version : 9.1

“Could not find Developer Disk Image”

安稳与你 提交于 2019-11-27 11:51:58
Recently I've been getting the error: "Could not find Developer Disk Image" I think this happens since I have updated iOS to 9.1 on the iPhone. How can I fix the problem and make Xcode support iOS 9.1 devices? 1) I have experienced same issue, my Xcode version was 7.0.1 , and I updated my iPhone to version 9.2 , then upon using Xcode, my iPhone was shown in the section of unavailable device. Just like in image below: 2) But then I somehow managed to select my iPhone by clicking at Product -> Destination -> Unavailable Device 3) But that didn't solved my problem, and it started showing: Could

iPad Pro launch image and App icon

非 Y 不嫁゛ 提交于 2019-11-27 03:49:24
问题 iPad Pro requires 167x167 App icon and 2732 x 2048 (landscape) launch image. But where should I put them? Xcode 7.1 Asset Catalogs don't provide any place to add iPad Pro specific icons or images. My launch image is size specific, so using storyboard for this isn't a good option. 回答1: Apple commented on this issue: "Latest beta (7.2b3) added 83.5@2x app icon slot to asset catalogs, and Developer relations reported in a radar comment that they no longer support launch images and will not be

How to get email id of user using facebook sdk 4.7 in ios 9

依然范特西╮ 提交于 2019-11-26 18:40:42
问题 Here is my code , I am only getting user name and facebook id of user. FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init]; [login logInWithReadPermissions: @[@"public_profile",@"email",@"user_friends"] fromViewController:self handler:^(FBSDKLoginManagerLoginResult *result, NSError *error) { if (error) { NSLog(@"Process error"); } else if (result.isCancelled) { NSLog(@"Cancelled"); } else { if ([FBSDKAccessToken currentAccessToken]) { [[[FBSDKGraphRequest alloc] initWithGraphPath:@"me