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
5
votes
3 answers

UITapGestureRecognizer on UITextField no longer works in IOS 7.1

I have a UITapGestureRecognizer attached to a UITextField to get a "drop down" like effect. When the UITextField is tapped, I present a UIPopover with the content. This worked like a charm pre 7.1 - Now the UITextField just becomes first responder,…
HeineSkov
  • 449
  • 1
  • 7
  • 18
5
votes
2 answers

SDWebImage in iOS 7.1 crashes

So, i've just updated my xcode and started building my app for iOS 7.1. But now i find out that my SDWebImage is broken. Whenever i try to set an ImageWithUrl for a UIImageView my app crashes with the following exception and stacktrace: 2014-03-11…
Daan Olislagers
  • 3,253
  • 2
  • 17
  • 35
5
votes
1 answer

IOS 7.1: UIButton's selected title not working

Today I upgraded my iPhone OS to iOS 7.1. Everything looks good in the new iOS, but I have a critical issue regarding UIButtons in the app I'm working on. The selected state was gone in every button. For instance, Like button has title of "Liked"…
Pei
  • 11,452
  • 5
  • 41
  • 45
4
votes
1 answer

EXC_BAD_ACCESS Code 2 on CCCrypt

I am trying to use DES encryption to encrypt passwords (Don't ask why DES, I know it's less secure). I am doing it for the first time in iOS, thus had to rely on another post about how to do it. When I run the encryption it returns null, same with…
0xC0DED00D
  • 19,522
  • 20
  • 117
  • 184
4
votes
1 answer

iOS/Swift test for UIAlertController/UIAlertView

I'm developing an app that needs to run on iOS 7 as well as 8. I want to use the UIAlertController if possible, if not fall back to UIAlertView. I use this test: let gotUIAlertController:AnyClass? = NSClassFromString("UIAlertController") if(…
Fittoburst
  • 2,215
  • 2
  • 21
  • 33
4
votes
2 answers

Xcode 6.1 stucks at downloading iOS 7.1 Simulator

My Xcode 6.1 makes no progress with downloading the iOS 7.1. It takes even hours but nothing filling to the progress bar. I checked the download speed, it looks like the Xcode doesn't connect or download what it should. How can I solve this issue?…
azun
  • 391
  • 4
  • 11
4
votes
1 answer

UIWindow layout issue on ios7.1 with xcode 6.0

I created a project on xcode 6.0 and I've been running the project on ios8 simulator however when I tried run it on iphone5s ios7.1 simulator the UIWindow frame became to 320x480... self.window = [[UIWindow alloc] initWithFrame:[[UIScreen…
Jason Zhao
  • 1,278
  • 4
  • 19
  • 36
4
votes
1 answer

Prevent AVCaptureSession from crashing once user toggles Camera privacy settings

Been using AVCaptureSession to record barcodes, and it works well. I also have followed the advice on stack overflow (How to properly release an AVCaptureSession) to [_session stopRunning]; [_prevLayer removeFromSuperlayer]; _prevLayer =…
user3847136
  • 47
  • 1
  • 6
4
votes
0 answers

Not scanning credit/debit cards using card.io

I am using card.io_ios_sdk_3.8.0, I followed exactly what is mentioned in https://github.com/card-io/card.io-iOS-SDK. I am unable to scan credit or debit cards (VISA , Discover, etc). I get "NSScanner: nil string argument". I know I am making a…
Femina
  • 1,239
  • 1
  • 12
  • 25
4
votes
0 answers

crash app when click "Open in Instagram" - objective c

My app crash when click on "Open in Instagram" .. iOS7 My code is: .h file: @property(nonatomic, retain) UIDocumentInteractionController* docController; And in .m file: NSString *jpgPath = [NSHomeDirectory()…
user306481
  • 135
  • 1
  • 11
4
votes
3 answers

How to know the closest iBeacon

I have a code to know which beacon is the closest, but I have a problem when a beacon's accuracy is -1.00000, the the app takes the second one. So there is a bucle that seek for the closest beacon looking for others and comparing the one closest…
Norolim
  • 926
  • 2
  • 10
  • 25
4
votes
0 answers

Strange CFNetwork crash in iOS7.1 - possibly AFNetworking Related

I have started receiving details of a crash that I have not seen before, and it only appears to have started happening since the 7.1 update. The exact line from the stack is : CFNetwork …
larrysanchez
  • 127
  • 1
  • 13
4
votes
2 answers

ios7.1: push notification badge update issue

I have setup Push Notification in One of my current Project. I have followed all instruction required for Push notification. that working fine in [tag: ios7] but in 7.1 i got issue in badge update when my application in background Mode. My code is…
Nitin Gohel
  • 49,482
  • 17
  • 105
  • 144
4
votes
1 answer

Facebook iOS SDK gives FBErrorCategoryUserCancelled for no reason?

I've been rejected from the App Store since the tester was unable to login to my app with Facebook Login (I use the latest Facebook iOS SDK 3.13) They've sent me a screenshot indicating "Facebook: Login cancelled". I've searched my app's code, and…
thedp
  • 8,350
  • 16
  • 53
  • 95
4
votes
1 answer

Problems with currentPlaybackTime and MPMusicPlayerController and iOS 7.1

Having problems setting currentPlaybackTime with MPMusicPlayerController in iOS 7.1. I used to be able to simply do the following: MPMusicPlayerController *iPodController = [MPMusicPlayerController applicationMusicPlayer];…
Aron Nelson
  • 838
  • 1
  • 9
  • 17