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

What can cause NSUserDefaults to be cleared

I've been getting some odd reports for my app where the application settings stored into the NSUserDefaults is being cleared. The reports have all been on iOS 7s I know you can manually clear the NSUserDefaults by either uninstalling or making a…
loadedion
  • 2,217
  • 19
  • 41
7
votes
1 answer

UICollectionViewCell not calling updateConstraints automatically when dequeued?

I have a UICollectionViewCell subclass. I wrote an updateConstraints method as I've done a hundred times before. For some reason that is never called when the cell is dequeued. I had to add a manual call to [cell setNeedsUpdateConstraints] after…
Bob Spryn
  • 17,742
  • 12
  • 68
  • 91
7
votes
3 answers

AFNetworkReachabilityManager says no network

I'm confused due to lack of examples, so I did this in my appDelegate's didFinishLaunching: [[AFNetworkReachabilityManager sharedManager] startMonitoring]; bool isThere = [[AFNetworkReachabilityManager sharedManager] isReachable]; And that always…
Maury Markowitz
  • 9,082
  • 11
  • 46
  • 98
7
votes
1 answer

Confused about the direction of iOS constraints

I've been working through Matt Nueberg's Programming iOS 7 book and am struggling to understand something with the direction of constraints. On page 28 of the book, in the multiplier, constant section, the author states: The first attribute is set…
Travis Griggs
  • 21,522
  • 19
  • 91
  • 167
7
votes
1 answer

MediaPlayer crash on iOS 7.1 (MPAVItem)

I'm using a UIWebview to play YouTube video on my iOS app, after iOS 7.1 release, I got lots of following crash report: Exception Type: EXC_CRASH (SIGSEGV) Exception Codes: 0x0000000000000000, 0x0000000000000000 Triggered by Thread: 1 Thread 0: 0…
7
votes
2 answers

Have particle emitter trail follow finger path in spriteKit

I have created a particle emitter in Xcode that has quite a lengthy trail. When i move it inside of the particle generator it leaves a trail following my mouse path. some background info on my goal: In my spriteKit game the user drags their finger…
Ron Myschuk
  • 6,011
  • 2
  • 20
  • 32
7
votes
1 answer

UISlider minimum and maximum track tint clear color iOS 7.1 bug

I seem to be having an issue that I was not having using iOS 7.0 in my app, it now only appears on iOS 7.1. The problem I'm having is that when I set the minimum and maximum trackTintColor properties to a clear color, I'm now left with what I call…
klcjr89
  • 5,862
  • 10
  • 58
  • 91
7
votes
2 answers

UILabel and UILabel's ellipsis color changes in iOS 7

I am seeing something really strange happening on my UITableViewCells containing UILabels with ellipsis (this project is iOS 7 only). I see the ellipsis when the tableView first load. Then, if I press a cell, the text + ellipsis colors change just…
CyberDandy
  • 470
  • 6
  • 17
7
votes
3 answers

iOS 7 CoreLocation: region monitoring fails on the first time after location services are authorised

I identified a strange behaviour on my app using CoreLocation. I'm using the region monitoring functionality but, after authorising the location services (via popup or settings->Location Services) region monitoring fails (The operation couldn’t be…
Rui
  • 5,900
  • 10
  • 38
  • 56
7
votes
1 answer

Is it possible to animate a constraint in iOS 7 custom transition

All I can seem to find in examples are using transforms or are modifying frames. Have I missed something obvious? Currently the other animations (fades) are all working fine, however the constraint stays locked in position. A quick code…
SeanCAtkinson
  • 753
  • 1
  • 4
  • 15
7
votes
1 answer

NSMutableArray index 9223372036854775807 beyond bounds

I found this via a crash report: *** -[__NSArrayM objectAtIndex:]: index 9223372036854775807 beyond bounds [0 .. 8] CoreFoundation-[__NSArrayM removeObjectAtIndex:] This is the code responsible: [self someMethodwithCallback:^(NSMutableArray…
daihovey
  • 3,485
  • 13
  • 66
  • 110
7
votes
3 answers

pinch zooming in image viewer

I have an UIImageView. I need pinch zoom. UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 90, 320, 38)]; [imageView setImage:[UIImage imageNamed:@"accesspanel.png"]]; [self.view addSubview: imageView];
janagowtham
  • 167
  • 1
  • 1
  • 10
7
votes
3 answers

Detects iOS 7.1 version

I use this code #define IS_IOS7 (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_6_1) To find if the app is running on iOS7. But I now need to know if it runs on iOS7.1 but there isn't any NSFoundationVersionNumber_iOS_7_0 and…
Tancrede Chazallet
  • 7,035
  • 6
  • 41
  • 62
7
votes
1 answer

The app references non-public selectors in Payload/.app/

I built an app to deliver it to the AppStore but the validation process throw this error: The app references non-public selectors in Payload/.app/: categories, content, contextForCurrentThread, createEntity, isSample, links,…
Gabriel Goncalves
  • 5,132
  • 3
  • 25
  • 34
7
votes
2 answers

How to pass variables between view controller using presentViewController in iOS SDK?

some days ago I wrote a method to load a view controller using presentViewController: -(void)passaGC:(NSString *)user { UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil]; UIViewController *viewController =…
Gualty
  • 251
  • 1
  • 4
  • 13