Questions tagged [ios7]

iOS 7 is the seventh version of Apple's iOS mobile operating system and is the successor to iOS 6. It was announced at the company's Apple Worldwide Developers Conference (WWDC) on June 10, 2013, and was released on September 18, 2013.

iOS 7 is the seventh version of Apple's mobile operating system and is the successor to . It was announced at the company's Apple Worldwide Developers Conference (WWDC) on June 10, 2013, and was released on September 18, 2013. It includes a redesigned user interface and a number of changes to the operating system's functionality. The design of iOS 7's new elements was led by Jony Ive, Apple's Senior Vice President of Design.

iOS 7 was unveiled during the opening keynote of the Apple Worldwide Developers Conference (WWDC) on June 10, 2013. Billed as the "biggest change to iOS since the introduction of the iPhone", the most noticeable change was an overhaul of the user interface. In a promotional video shown during the keynote, Ive described the update as "bringing order to complexity", highlighting features such as refined typography, new icons, translucency, layering, physics, and gyroscope-driven parallaxing as some of the major changes to the design. The design of both iOS 7 and OS X Mavericks (version 10.9) noticeably depart from skeuomorphic elements such as green felt in Game Center, wood in Newsstand, and leather in Calendar, in favor of flatter graphic design. The UI itself is not flat, but rather a multi-plane 2.5D zooming user interface. In his segment of the iOS presentation, Federighi emphasized ten major feature additions and changes.

The icons for iOS 7 were reportedly designed by Apple's marketing team, with them being told to design the apps around the color palette of the icons; straying from the usual design methodology of iOS. iOS 7 uses a similar color palette to that of the original Apple logo. It was also noted that Apple's website displayed different icons for several iOS 7 apps for a period of time, leading to speculation that the icons were already in the process of being changed as the design continues to develop.

Compatibility

iOS 7 supports the following devices:

  • iPhone 4, iPhone 4S, iPhone 5, iPhone 5C, iPhone 5S
  • iPad 2, iPad 3, iPad 4, iPad Mini, iPad Mini 2, iPad Air
  • Apple TV 2nd and 3rd generation
  • iPod Touch 5th generation

iOS 7 References

iOS 7 Latest Version

14691 questions
7
votes
1 answer

AVCaptureMetadataOutput setMetadataObjectTypes: unspported type found

I used ios7 API to scan QRcode , code as bellow: AVCaptureMetadataOutput *output = [[AVCaptureMetadataOutput alloc] init]; [self.captureSession addOutput:output]; [output setMetadataObjectsDelegate:self queue:captureOutputBufferQueue]; …
Ichagall
  • 71
  • 1
  • 3
7
votes
3 answers

Reverse geocoding to return results only in English?

Using the code below I'm requesting a reverse geocoding for the current coordinate. Everything works great, except for when the device is set to a different language than English. Example: If the language of the device is Italian, and I'm in Italy,…
thedp
  • 8,350
  • 16
  • 53
  • 95
7
votes
2 answers

iOS7 UIWebView has wrong scrollview inset on inital load

Whenever I display a PDF file in my webView it looks like it's initial scrollview inset is not set correctly but as soon as I start scrolling or zooming, it jumps to it's correct place :/ The PDF is loaded but it's partially under the navigation…
budiDino
  • 13,044
  • 8
  • 95
  • 91
7
votes
0 answers

Automatic lightweight migration works for local storage but iCloud storage "loses" all legacy data

I'm tearing my hair out with this one. I've got an App on iTunes which I added iCloud support to end of last year (Oct '13) on iOS7.0 This week I decided to write a new functional for the App which requires a new entity in the xcdatamodel. A very…
Seoras
  • 1,286
  • 13
  • 21
7
votes
1 answer

How does MCNearbyServiceBrowser know whether MCNearbyServiceAdvertiser declined an invitation?

iOS Multipeer Connectivity question... If an MCNearbyServiceAdvertiser declines the invitation from an MCNearbyServiceBrowser via calling: invitationHandler(NO,…
lagouyn
  • 376
  • 2
  • 12
7
votes
1 answer

'isConnected' deprecated in iOS 7

I know this is a stupid question but here goes. I have an older app that uses isConnected. Now I get a warning that it is deprecated. Can I just delete this line of code without any ramification or how do I handle this. Sorry for being so…
user1114881
  • 731
  • 1
  • 12
  • 25
7
votes
4 answers

How to calculate height of html string before loading into webview in ios 7?

I want to find the height of html string that is coming from webservice. Kindly suggest me with the best solution. Thanks in Advance
mahesh
  • 97
  • 3
7
votes
1 answer

iOS different kind of object initialisation

I was trying to integrate RESideMenu to my application. I was trying to understand how it works to be able to customize a little bit more. Than, i've encountered this initialisation that i've never seen before. I couldn't seem to find any official…
limon
  • 3,222
  • 5
  • 35
  • 52
7
votes
1 answer

Animating Constraint Changes, position animates but height jumps without animation

I have a custom UIView. Within that UIView I have a UILabel with a yellow background containing @"8" called labelWhite. I programmatically create 4 constraints for that UILabel: top, left, width, and height. When I tap the UIView, I change the…
Kenny Wyland
  • 20,844
  • 26
  • 117
  • 229
7
votes
3 answers

Working with UILocalNotifications, Remote Notifications with completion handler and Background Fetch

With iOS7, it is possible to have completionHandler for Remote Notifications. Is it possible to do the same for UILocalNotifications? Basically, I want a webservice to post my some data at regular time intervals of 30 seconds, even if the app is in…
mayuur
  • 4,736
  • 4
  • 30
  • 65
7
votes
1 answer

UIDocumentInteractionController Does Not Show Mail Option

Heres the UIDocuemtnInteractionController from my application(does not show mail option) Here the one that Apples sample project uses Here are the respective codes My application docInteractionController = [UIDocumentInteractionController…
BangOperator
  • 4,377
  • 2
  • 24
  • 38
7
votes
2 answers

core data NSPersistentStore issue

I am developing an application that is rolled out in stages. For each sprint, there are database changes so core data migration has been implemented. So far we have had 3 stage releases. Whenever successive up gradation is done , the application…
Mary
  • 335
  • 4
  • 14
7
votes
2 answers

iOS 7 UITextView: Size of nstextattachment getting 2x after reopening the application

I am building a note editor using the Text Kit in ios7. Earlier I had trouble in rendering of custom size NSTextAttachment's as it was slowing down the rendering to a great extent.I solved the issue by scaling the images and then adding them to…
nick28
  • 134
  • 2
  • 7
7
votes
5 answers

Combine UIPageViewController swipes with iOS 7 UINavigationController back-swipe gesture

I have a navigation controller that pushes a view-controller (PARENT) that contains an UIPageViewController (PAGES). Now I used pan/swipe gestures to switch between the children of the page-view-controller. However, I can no longer pop the…
scrrr
  • 5,135
  • 7
  • 42
  • 52
7
votes
1 answer

How to keep text in search bar when dismiss UISearchDisplayController

I'm using a UISearchDisplayController in my app. When the user selects an item in the search results returned I deactivate the UISearchDisplayController. Deactivating the controller clears the text the user has typed. I want to keep it there. I try…