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
2 answers

iOS 7 : 'isa' is deprecated

I get warning when I run my app in iOS7 "'isa' is deprecated", I don't have any idea how to fix this warning message. Please any one help on this. array->isa = _JKArrayClass;
Divya Bhaloidiya
  • 5,018
  • 2
  • 25
  • 45
7
votes
2 answers

iOS 7 UIButtonBarItem image does not tint

On my nav bar, I have a couple of rightBarButtonItems that have custom icons (the icon images are white, which worked well with the basic color scheme of iOS 6). Under iOS 7, loading the images using initWithTitle (see code snippet 1) replaces the…
JMC
  • 261
  • 2
  • 6
7
votes
2 answers

SearchDisplayController SearchBar overlapping navigation bar and resizing itself IOS7

My app has a tableview controller that is presented as a form sheet. On top portion of tableviewcontoller there is a UView and inside of that UIView there is a navigation bar and a searchbar. Everything works fine older version of IOS but in IOS7…
SpaceDust__
  • 4,844
  • 4
  • 43
  • 82
7
votes
2 answers

clock_get_time/mach_absolute_time stops updating when device goes to sleep on iOS 7

My application uses mach_absolute_time to calculate the ticks since the last touch event and logs the user out if it surpasses an idle time limit of 10 minutes. This all works fine on iOS 6, but I noticed that it was not behaving correctly on iOS 7.…
Jay
  • 332
  • 1
  • 3
  • 10
7
votes
2 answers

Autorotation not working in iOS 7 , works fine in iOS 6

I have an app that supports landscape orientation only on some sections (Photo gallery, video, etc) and all is working fine on iOS 6 with no issues, however, in iOS 7 the app crashes. So heres my issue : start app and load initial nav controller…
shokaveli
  • 478
  • 7
  • 14
7
votes
1 answer

iOS 7 Custom Present Transition with UINavigationController

i'm using iOS 7 Custom transition to present a UINavigationController. but there is a problem. while its animating, the size of navigation bar is only 44points. then after done animating, navigation controllers figured out there is a status bar, so…
7
votes
4 answers

How do I add a dark screen that covers all other views (including navigation bar and status bar)?

I want to add a dark screen over all my views, and then present a notification window above it, like in Tweetbot 3: However, I'm not totally sure how this is accomplished. Adding a dark view with the size of the screen as its frame does not work,…
Doug Smith
  • 29,668
  • 57
  • 204
  • 388
7
votes
1 answer

MKStoreKit crash on iOS 7 with SIGTRAP error

I have been over and over this live app crash log and cannot find the problem: 1 CoreFoundation _CFHash + 130 2 CoreFoundation CFBasicHashFindBucket + 724 3 CoreFoundation _CFDictionaryGetValue + 99 4 CoreFoundation …
SAHM
  • 4,078
  • 7
  • 41
  • 77
7
votes
2 answers

With Dynamic Type in iOS 7, how do I factor in more advanced layout issues, such as spacing between labels/views?

I'm updating my app to support Dynamic Type in iOS 7. It was relatively easy to make the text adjust its size depending on the system setting, but as I'm using it in the context of a UITableView and cells with multiple UILabels in them, text size…
Doug Smith
  • 29,668
  • 57
  • 204
  • 388
7
votes
1 answer

UISearchbar barTintColor Cancel button not visible

I try to set the bar color of a UISearchbar to one color and the tintColor (cursor and Cancel-Button) to another color with code like this: searchbar.barTintColor = color1; searchbar.tintColor = color2; The barTintColor is applied correctly. The…
mhaddl
  • 885
  • 1
  • 9
  • 18
7
votes
2 answers

Load UIWebView in a background fetch

Short version: in my app background fetch works like a charm except that when I try to load contents in a webview it does nothing at all! Long version: I set the right capabilities in the project, set the fetch interval and implement the - (void)…
7
votes
1 answer

Only statusbar is rotating to Landscape (iPhone)

In One of my Viewcontroller that supports only Portrait orientation. On my device when rotate the status bar is rotating to landscape orientation. The rest of the view remains in Portrait mode. I want to prevent the roation of statusbar. This …
Sabareesh
  • 3,585
  • 2
  • 24
  • 42
7
votes
2 answers

How to create a UITextField on SpriteKit

I want to implement a Textfield to input your name on my SpriteKit Game, so I have something like this: SKLabelNode* gameTitle = [SKLabelNode labelNodeWithFontNamed:@"Chalkduster"]; gameTitle.text = @"Game Title"; gameTitle.name =…
Vergmort
  • 399
  • 1
  • 6
  • 18
7
votes
2 answers

How do I make my UITextView the height of the screen minus the keyboard under iOS 7?

My code was working fine under iOS 6, but under iOS 7 I can't seem to make my UITextView the height of the device's screen minus the keyboard (in other words, when the keyboard is up, have the UITextView still be fullscreen, but not go under the…
Doug Smith
  • 29,668
  • 57
  • 204
  • 388
7
votes
1 answer

CGContextSelectFont and CGContextShowTextAtPoint in iOS 7

CGContextSelectFont and CGContextShowTextAtPoint are deprecated in iOS 7. What are equivalents in C? All the answers I've seen give Objective-C equivalents (like using NSString methods) but I'm working in C++ files.
Berry Blue
  • 15,330
  • 18
  • 62
  • 113
1 2 3
99
100