ios7.1

Gray area visible when switching from portrait to landscape using iOS 7.1 minimal-ui

大城市里の小女人 提交于 2019-12-03 05:06:32
问题 In a web application that I am working on, I tried out iOS 7.1's new minimal-ui feature (see safari fullscreen in iOS 7.1 with minimal-ui meta tag), but I am seeing an issue where an 84px-high gray area appears at the bottom when I switch from portrait to landscape. Also, document.body.scrollTop changes to 64 after switching to landscape. You can see the issue using this "Hello World" web app: http://www.creativepulse.gr/media/blog/2014/20140123-hello-world/example.html When I load the app in

ios 6.0 Simulator in xcode 5.1

风格不统一 提交于 2019-12-03 03:16:28
I just successfully updated my Xcode tool to 5.1 version and when I check Downloads option in preference section then I noticed there is no option to download ios 6.0 simulator.(Please check attached image) So how can I access ios 6.0 simulator in Xcode 5.1? chandan Please follow this procedure to upgrade your xCode Upgrade xCode At last change deployment target to access both IOS 6 and IOS 7 simulators. There are basically no difference between IOS 6.0 and IOS 6.1, in 6.1 apple just added three header file with few method in MapKit framework and did little modification in UIKit . So I don't

iOS 7.1 Slide To Unlock Text Animation

自作多情 提交于 2019-12-03 02:57:07
I'm not sure if this has been asked before, but I'm having a hard time finding it. Perhaps I'm not using the right search terms, so if an answer already exists, if someone could point me in the right direction, it'd be most appreciated! I just noticed that the glimmer animation on the "slide to unlock" text of the lockscreen has changed with the iOS 7.1 update. The spotlight now has an ovular / diamond shape that cascades across the letters without appearing on the view behind it. In the past, I've replicated this type of feature by changing the color of individual letters sequentially, but

iOS 7.1 removeFromSuperview crash

孤者浪人 提交于 2019-12-03 02:21:00
My app didn't have any crash until iOS 7.1 came out. Now on any removeFromSuperview method, crash. For example: I got view controllers, and when I want to remove a view controller, I remove all of its subviews, and then remove from the stack (stack: I'm storing view controllers in this, for load new contents, and load previous contents): for (UIView *subView in [contentVc subviews]) [subView removeFromSuperview]; And I got -[CALayer retain]: message sent to deallocated instance message [actual removeFromParentViewController]; is a good way to remove it? And will it release the whole view

NSURLSessionTask never calls back after timeout when using background configuration

末鹿安然 提交于 2019-12-02 19:08:57
I am using NSURLSessionDownloadTask with background sessions to achieve all my REST requests. This way I can use the same code without have to think about my application being in background or in foreground. My back-end has been dead for a while, and I have taken that opportunity to test how does NSURLSession behave with timeouts. To my utter surprise, none of my NSURLSessionTaskDelegate callbacks ever gets called. Whatever timeout I set on the NSURLRequest or on the NSURLSessionConfiguration , I never get any callback from iOS telling me that the request did finish with timeout. That is, when

Gray area visible when switching from portrait to landscape using iOS 7.1 minimal-ui

∥☆過路亽.° 提交于 2019-12-02 18:20:26
In a web application that I am working on, I tried out iOS 7.1's new minimal-ui feature (see safari fullscreen in iOS 7.1 with minimal-ui meta tag ), but I am seeing an issue where an 84px-high gray area appears at the bottom when I switch from portrait to landscape. Also, document.body.scrollTop changes to 64 after switching to landscape. You can see the issue using this "Hello World" web app : http://www.creativepulse.gr/media/blog/2014/20140123-hello-world/example.html When I load the app in Mobile Safari on iOS 7.1 iPhone Retina Simulator, everything is fine in portrait mode. However,

How can I change a color of image and label on UITabBar on iOS 7.1?

梦想与她 提交于 2019-12-02 15:52:58
问题 How can I change a color of image and label on UITabBar on iOS 7.1? On iOS 7 I could make it by Tint property. But on iOS 7.1 it doesn't work. 回答1: This changes the tint of both the image and the label, when selected. - (void)viewDidLoad { [super viewDidLoad]; [[UITabBar appearance] setTintColor:[UIColor redColor]]; } 回答2: It works in the same way in iOS 7 and iOS 7.1! In AppDelegate: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

iOS app with iBeacon must restart device

痞子三分冷 提交于 2019-12-02 08:08:49
问题 I built a simple ios app with IBeacon . I ran this app on an iPhone 4s whit ios7.1 while running an IBeacon base station.Everything is working right in background or foreground(exit region have 30 seconds delay in background).But over a period of time,about 3 hours,this app can not monitor any event though device setting were not change(blueTooth and locate is normal).This situation must restart the device. Please tell me what should i do aboult this situation? Thanks! 回答1: I wonder if iOS

BUTTON SHAPE on in device (iPhone) setting result app crash if its off app working

耗尽温柔 提交于 2019-12-02 05:37:44
问题 Recently i switch my app to iOS 7 compatibility and the app working fine but if i switched on the Button Shape option (Available in iOS 7.1) in device setting (Setting--> Accessblity--> Button shape switch) then app crash and gives following error:- -[NSAttributeDictionary textContainerForAttributedString:containerSize:lineFragmentPadding:]: unrecognized selector sent to instance 0x17e4e310 CoreFoundation And the app work fine when button shape option switched off. crash stack trace:- -

iOS7.0 and iOS 7.1 doesn't honor Dynamic tableview Height

随声附和 提交于 2019-12-02 04:17:19
问题 I have used autolayout in various implementations for UITableViewCell, the approach being let the intrinsic size define the size and which in turn will provide height for tableview rows. Strangely but targeting iOS7 and above with Autolayout in UITableViewCell isn't working as desired. To fix one of the other issues where tableview cells became squeezed (on iOS8 and above) I added following check if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_7_1 ){ self.tblvChatList.rowHeight