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
16
votes
4 answers

Cannot set clipToBounds on UITableViewCell's contentView in iOS 7.1

The iOS 7 redesign resulted in change of the view hierarchy of UITableViewCells. The content view of the cell was wrapped in a private class called UITableViewCellScrollView. In iOS 7 UITableViewCellScrollView has clipsToBounds set to YES and…
Reid Main
  • 3,394
  • 3
  • 25
  • 42
16
votes
8 answers

iOS 7.1 Slide To Unlock Text Animation

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…
Logan
  • 52,262
  • 20
  • 99
  • 128
15
votes
1 answer

Homebrew Can't Install xctool

What does Homebrew mean to Check dependencies? Is this a Xcode5.1/iOS7.1 issue? I already ran through this link. $ brew install --verbose xctool ==> Downloading https://github.com/facebook/xctool/archive/v0.1.14.tar.gz Already downloaded:…
Glenn
  • 325
  • 2
  • 9
15
votes
2 answers

iOS 7.1 input field positioned below virtual keyboard forces zoom on focus

I am writing a chat application using Cordova, and the chat view has an iMessage-like input field at the bottom of the page. In iOS 7.0, clicking on the field resized the window and brought the input field up above the keyboard. In iOS 7.1, …
Joe Fatora
  • 147
  • 2
  • 6
14
votes
9 answers

iOS 7.1 removeFromSuperview crash

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:…
Magyar Miklós
  • 4,182
  • 2
  • 24
  • 42
13
votes
7 answers

Remove underline on UIButton in iOS 7

Any one know how to remove the UIButton underline that appears because of Accessibility? (I know it's because the user turned on "Button Shapes") How can I remove that programmatically, or by setting some property in Xcode?
Mitul Bhadeshiya
  • 1,280
  • 1
  • 12
  • 32
13
votes
5 answers

How is iBeacon support REALLY changed in iOS 7.1?

I've seen claims on the net that the newly released iOS 7.1's iBeacon support. Specifically: The system is supposed to still notify your app about didEnterRegion/didExitRegion events, even if the user explicitly kills your app.…
Duncan C
  • 128,072
  • 22
  • 173
  • 272
13
votes
2 answers

iOS7 new update V 7.1(11D167) not compatible in Xcode 5 for development

I got notification of IOS7 new version V7.1. I have installed on my iPhone 4S. As I am developer my iPhone 4S is not detected in development mode in Xcode 5 SDK. When I opened organizer in Xcode. It shows, The version of iOS on “iPhone 4S” is not…
Gajendra K Chauhan
  • 3,387
  • 7
  • 40
  • 55
12
votes
4 answers

Error when distributing an IPA over the air with dropbox - iOS 7.1

As Apple requested to use https instead of http for distributing the IPAs over the air, I tried to use dropbox. I followed this solution Enterprise app deployment doesn't work on iOS 7.1 but I'm getting this error: "Cannot connect to…
nano
  • 2,511
  • 4
  • 25
  • 42
12
votes
2 answers

SQLite "database disk image is malformed"

I am having trouble with an app where the SQLite database is getting corrupted. There was the odd case of this previously, but it seems to have become a lot more common after the release of iOS 7.1. I'm using the SQLite wrapper by Matteo Bertozzi…
Batnom
  • 279
  • 2
  • 4
  • 15
12
votes
4 answers

iOS 7.1 imagePicker CameraFlashMode not indicating Flash state

I have iPhone application which overlays the camera with custom view. I have a button to switch between camera flash mode, this is the code switch ([self.imagePickerController cameraFlashMode]) { case UIImagePickerControllerCameraFlashModeAuto: …
Eliktz
  • 572
  • 1
  • 4
  • 27
12
votes
5 answers

Sprite Kit iOS 7.1 crash on removeFromParent

I have updated iPad Air to 7.1 and Xcode to 5.1. Xcode wanted to update my project to recommended settings, I agreed. After that my game began crashing in a couple of places when I remove node from parent. That was a surprise for me — there were no…
Alexander Bekert
  • 617
  • 8
  • 18
11
votes
2 answers

RTF file to attributed string

I'm trying to read RTF file contents to attributed string, but attributedText is nil. Why? if let fileURL = NSBundle.mainBundle().URLForResource(filename, withExtension: "rtf") { var error: NSError? if let attributedText =…
Shmidt
  • 16,436
  • 18
  • 88
  • 136
11
votes
2 answers

Assertion failure in -[UITableView layoutSublayersOfLayer:]

I want to use an UISearchDisplayController on UIViewController, that includes an UITableView. I use Autolayout. When i try to put the SearchBar (_searchBar) in the tableHeaderView with self.tableView.tableHeaderView = _searchBar; I get the…
Ulli H
  • 1,748
  • 1
  • 19
  • 32
11
votes
3 answers

Custom button Image not visible on navigation bar iOS 7.1

I had added custom button on my navigation bar. here is the code now my problem is that in iOS7 I am able to see back Button image with text, while in iOS 7.1 the image is not displaying only text is displaying. -(void)addBackButton{ …
Bhupesh
  • 2,310
  • 13
  • 33
1
2
3
38 39