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

How to save & retrieve NSdata into sqlite through FMDB

How can I save NSData into sqlite, I am using FMDB wrapper for saving data. Below is the code which I have tried so far For saving NSData *data = [NSKeyedArchiver archivedDataWithRootObject:model.expertArray];; NSString *query = [NSString…
DAMM108
  • 970
  • 2
  • 13
  • 27
7
votes
1 answer

Downloading more than one file Using NSURLSession and also maintain their progress in background state

I have used NSURLSession to download a single file and it is working fine,Now i have to download three files in background and also have to manage their progress in UIProgress.My code for single downloading is below.. -…
Sishu
  • 1,510
  • 1
  • 21
  • 48
7
votes
2 answers

Keep UIKeyboard with view when swiping back iOS 7

I have a view controller that can be popped with the new interactivePopGestureRecognizer. If there is a keyboard present and the swipe animation begins the keyboard does not move with the view. I have had a look at this question and implemented it…
sbarow
  • 2,759
  • 1
  • 22
  • 37
7
votes
2 answers

How to consistently stop AVAudioSession after AVSpeechUtterance

What I want to do is allow my app to speak an utterance using AVSpeechSynthesizer while background audio apps are playing audio. While my app is speaking, I'd like the background apps' audio to "dim" and then return to their original volume after my…
kross
  • 403
  • 4
  • 7
7
votes
1 answer

UIActivityViewController with NSURL to audio file only shows airdrop

I am trying to use a UIActivityViewController to share an audio file (.aac). It is a temporary file that I have written to the sandboxed documents directory. I pass a NSURL in the initWithActivityItem: method. [audioData writeToFile:[urlToAudioFile…
Joseph
  • 9,171
  • 8
  • 41
  • 67
7
votes
1 answer

Transaction identifier not showing in the app receipt

I am working with auto-renewable subscriptions. When the app has successfully finished a transaction, it sends the receipt to our server to validate it and to check that the last transaction identifier exists in the receipt. From time to time, our…
Xavi Gil
  • 11,460
  • 4
  • 56
  • 71
7
votes
2 answers

Apportable with Spritekit

I'm trying to port a project that uses SpriteKit and I'm having problem with these classes: SKPhysicsBody L_OBJC_CLASSLIST_REFERENCES_$_63: error: undefined reference to 'OBJC_CLASS_$_SKPhysicsBody' scons: building terminated because of…
Stalin Pusparaj
  • 741
  • 9
  • 11
7
votes
4 answers

Using plural strings without number

I'm a bit confused by the .stringsdict documentation (scroll to "Localized Property List File"). Given a number of files, I want to show Save File or save Save Files accordingly. I thought the following would work, but doesn't. In code: NSString…
hpique
  • 119,096
  • 131
  • 338
  • 476
7
votes
2 answers

Change the bar tint color makes the blurry area becomes black and white

I would like to add a blurry effect on my view, and I used a UIToolbar to do that. But when I try to add bar tint color on the UIToolbar, something weird happens. Here is the code I used to add UIToolbar, very basic, nothing fancy: UIToolbar…
Xu Yin
  • 3,932
  • 1
  • 26
  • 46
7
votes
1 answer

UIViewControllerAnimatedTransitioning with a MPMoviePlayerViewController

I'm trying to do a custom presentation animation but the VC is an MPMoviePlayerViewController. I was following this tutorial: When I present the MPMoviePlayerViewController, all is right. But when I dismiss it, simply the method: - (id…
xarly
  • 2,054
  • 4
  • 24
  • 40
7
votes
5 answers

How to clear UITextView... for real

I'm ashamed to admit that I don't know how to clear a UITextView. By clearing, I mean leaving its text blank and removing all of its attributes. I thought setting it to nil would be enough, but the attributes of the first character remain there,…
hpique
  • 119,096
  • 131
  • 338
  • 476
7
votes
2 answers

How can I detect if the iPhone my app is on, is going to use a simple transparent effect instead of the blur effect?

My app on iPhone 4 running iOS 7 uses a UITabBar with a custom barTintColor. As mentioned in Apple documentation : https://developer.apple.com/library/ios/documentation/userexperience/conceptual/UIKitUICatalog/UITabBar.html Tab bars are…
Ayush Goel
  • 3,134
  • 27
  • 36
7
votes
3 answers

How to get local player score from Game Center

How to get score of local player from Leaderboard Game Center? I tried this code, but it returns nothing. Anybody know how to solve it, or is there better way how to get score? - (NSString*) getScore: (NSString*) leaderboardID { __block NSString…
user2374693
  • 163
  • 1
  • 2
  • 10
7
votes
1 answer

AFNetworking 2: Limit max number of concurrent Download Tasks

I'm dealing with an app that implements a download queue created with AFNetworking 2.0 and I will like to know if there is a way to limit the maximum number of download tasks (NSURLSessionDownloadTask) running at the same time. My final goal is…
WedgeSparda
  • 1,161
  • 1
  • 15
  • 40
7
votes
2 answers

Why is this UISearchBar getting resized?

As shown below, my UISearchBar is getting resized when I tap on the search field. It animates nicely to cover the navigation bar, and then pop... it shrinks. The setup The UISearchBar is inside a vanilla UIView set as the tableHeaderView. I'm…
hpique
  • 119,096
  • 131
  • 338
  • 476