Questions tagged [ios7.1]

iOS 7.1 was released by Apple on March 10, 2014 and includes new features and significant UI and performance improvements.

iOS 7.1 is packed with interface refinements, bug fixes, improvements, and new features. Apple CarPlay introduces a better way to use iPhone while driving. And you can now control exactly how long Siri listens and more.

The update landed almost 5 months since the first beta of 7.1 was made available to developers. Many improvements were made to the OS, including speed enhancements, UI tweaks and Siri enhancements. iOS 7.1 was also the first update which allowed people who were running a beta version of the OS to update over the air to the final release.

Features

• CarPlay

  • iOS experience designed for the car
  • Works by connecting a Lightning enabled iPhone to a CarPlay enabled vehicle
  • Supports Phone, Music, Maps, Messages, and 3rd-party audio apps
  • Control Siri with the car’s touchscreen, knobs, and buttons

• Siri

  • Manually control when Siri listens by holding down the Home button while you speak and releasing it when you’re done
  • New, more natural sounding male and female voices for Mandarin Chinese, UK English, Australian English, and Japanese

• The Phone app has a new-look dialer

• iTunes Radio

• Calendar

  • Option to display event list with the month view

  • Country specific holidays automatically added for many countries

• Bold text option now includes the keyboard, calculator, and many icon glyphs

• Reduce Motion option now includes Weather, Messages, and multitasking UI animations

• New options to display button shapes, darken app colors, and reduce white point

• Camera app has a new ‘HDR Auto’ feature.

• New iPad wallpapers

• Photos & Camera tab in iOS Settings has a new ‘Upload Burst Photos’ option

• Bug Fixes/Improvements

579 questions
80
votes
3 answers

ios crash EXC_BAD_ACCESS KERN_INVALID_ADDRESS

MyApp works well 98% of the time, but sometimes it crashes. It's so random. The crash report shows the following. Thread : Crashed: com.apple.main-thread 0 libobjc.A.dylib 0x3b1ae626 objc_msgSend + 5 1 Foundation …
Sj.
  • 1,674
  • 2
  • 15
  • 23
53
votes
4 answers

iOS Core Bluetooth : Getting API MISUSE Warning

I am writing a test app in iOS 7 with the Core Bluetooth API. When I am testing the application I found that I am getting the following warning message: TestBluetooth[626:60b] CoreBluetooth[API MISUSE] can only accept commands while in the powered…
51
votes
6 answers

Corner Radius property of UILabel is not working in iOS 7.1

I am setting the cornerRadius property for UILabel. Its working fine all version of iOS < 7.1. Following code i have used, UILabel *originaltagLbl = [[UILabel alloc]initWithFrame:CGRectMake(startX, startY, 100,30)]; [originaltagLbl…
Surfer
  • 1,370
  • 3
  • 19
  • 34
45
votes
5 answers

Black bars appear in app when targeting iOS7.1 or 7.0 in Xcode6

Steps to reproduce: Create a new project using Xcode6 (single view template, iPhone only, Objective-C) Navigate to project settings and change the deployment target from 8.0 to 7.1 Run the application on a iPhone5/S with 7.1 installed or in the…
Kris Gellci
  • 9,539
  • 6
  • 40
  • 47
35
votes
5 answers

iOS 7.1 UITapGesture not working with UIPickerView

We are using a UIPickerView to allow a user to select from a list of options. We are adding UIPickerView as a subview of a container UIView. We are then adding a UITapGestureRecognizer to the container UIView. The UITapGestureRecognizer is being…
Anupam
  • 555
  • 1
  • 5
  • 14
32
votes
5 answers

How can I run the iOS 7.1 Simulator in Xcode 7.0 beta 2?

I have installed latest Xcode 7 beta 2 version, when I am trying to run the application in iOS 7.1 Simulator its giving this error message: The iOS 7.1 simulator runtime is not available. Unable to open liblaunch_sim.dylib. Try reinstalling Xcode…
IOS Rocks
  • 2,127
  • 2
  • 21
  • 24
32
votes
6 answers

Error "Cast from pointer to smaller type 'int' loses information" in EAGLView.mm when update Xcode to 5.1 (5B130a)

Yesterday, I updated Xcode to the newest version (5.1 (5B130a)) to compatible with iOS 7.1. Then I build my project, I get the error "Cast from pointer to smaller type 'int' loses information" in EAGLView.mm file (line 408) when 64-bit simulators…
nvg58
  • 891
  • 1
  • 8
  • 17
31
votes
7 answers

iOS 7.1 UitableviewCell content overlaps with ones below

So I have code, which is sucessfully working on iOS 7.0 but not in 7.1. I have a simple tableview, with code: - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1; } - (NSInteger)tableView:(UITableView *)tableView…
Matej Kosiarcik
  • 413
  • 2
  • 5
  • 6
28
votes
1 answer

Crashed: com.apple.root.default-overcommit-priority - EXC_BAD_ACCESS KERN_INVALID_ADDRESS at 0x00000008

I get this error frequently from my testers on their iPhone 4 - no crash on iPhone 5s, iPad Air, iPad mini, not even on an iPhone 3GS. I thought it's memory related, but according to instruments I only need up to 14MB during that operation, and…
swalkner
  • 16,679
  • 31
  • 123
  • 210
25
votes
5 answers

iOS 7.1 UITextView still not scrolling to cursor/caret after new line

Since iOS 7, a UITextView does not scroll automatically to the cursor as the user types text that flows to a new line. This issue is well documented on SO and elsewhere. For me, the issue is still present in iOS 7.1. What am I doing wrong? I…
bilobatum
  • 8,918
  • 6
  • 36
  • 50
22
votes
7 answers

Error while setting app icon and launch image in xcode 5.1

I get the following error after dragging an image to set it as app icon and launch image Images.xcassets: The app icon set named "AppIcon" did not have any applicable content. Images.xcassets: The launch image set named "LaunchImage" did not have…
Anish
  • 745
  • 2
  • 8
  • 21
20
votes
5 answers

NSURLSessionTask never calls back after timeout when using background configuration

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,…
20
votes
3 answers

Tab bar background is missing on iOS 7.1 after presenting and dismissing a view controller

I've tried my app on iOS 7.1 and I found that the tab bar background disappears on a few occasions. I was able to track them down; it happens when: pushing a view controller placed inside navigation controller (that is inside tab bar controller)…
Lukas Petr
  • 1,513
  • 16
  • 19
16
votes
0 answers

Detect ring/silent switch position change

I'm working on an app for which I would like to: respect the ring/silent switch when playing audio, and display an icon indicating that sound is muted when the ring/silent switch is set to silent. Requirement 1 is easy: I'm using…
ravron
  • 11,014
  • 2
  • 39
  • 66
16
votes
7 answers

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

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…
Daniel Trebbien
  • 38,421
  • 18
  • 121
  • 193
1
2 3
38 39