ios9

ios 9 mobile safari has a blinking bug with transform scale3d and translate3d

家住魔仙堡 提交于 2019-12-01 17:36:00
I've developed the menu of the mobile website: http://famosos.globo.com/ (click the burger icon on the bottom of the page) Its a carousel of brands using swiper 3.0.8, when you swipe to any direction on ios 9 safari the brands keep blinking. I found out that it's because i use transform: scale3d (also happens with normal transform: scale) while the translate3d of swiper happens. I've tried using preserve-3d and backface-visibility tricks, but it still keeps blinking when you swipe. I've tried to isolate the swiper and scale code on this codepen: http://codepen.io/guilhermebruzzi/pen/BoKovN but

Getting GameCenter invite friend to work (iOS9?)

混江龙づ霸主 提交于 2019-12-01 17:27:15
问题 I cannot get GameCenter invite friend to work. The match maker view controller shortly shows the invited player and a little text "Failed" under it. Maybe I picked the wrong time to learn GameCenter, as quite a few people report difficulties with iOS9. But maybe there is a solution somewhere. Basics: iTunesConnect App record exists, app is not public, GameCenter is enabled, one leaderboard has been created, two sandbox users have been created (different from my main apple id) The app has one

Major Xcode 7 Sprite Kit Atlas Bug

谁说胖子不能爱 提交于 2019-12-01 17:24:34
问题 So today I decided to begin testing my game on El Capitan and iOS 9. This is a large project that I have been working on in my spare time for almost 2 years now. So I port my code over to Swift 2.0, click the run button and pray that Apple hasn't broke Sprite Kit (as they have in the past: one, two, three, four and don't even get me started on the shape node...). So my game launches, and what do you know — all of my nodes are mis-positioned, as well as my animated textures. Some other small

ios 9 mobile safari has a blinking bug with transform scale3d and translate3d

浪子不回头ぞ 提交于 2019-12-01 16:29:51
问题 I've developed the menu of the mobile website: http://famosos.globo.com/ (click the burger icon on the bottom of the page) Its a carousel of brands using swiper 3.0.8, when you swipe to any direction on ios 9 safari the brands keep blinking. I found out that it's because i use transform: scale3d (also happens with normal transform: scale) while the translate3d of swiper happens. I've tried using preserve-3d and backface-visibility tricks, but it still keeps blinking when you swipe. I've tried

Cannot debug app on Xcode 7.1 beta, with iOS 9.0 GM

别来无恙 提交于 2019-12-01 15:49:37
I am getting the following error when trying to run my app using Xcode 7.1 Beta (7B60) with iOS 9.0 GM installed on my iPad: An error was encountered while enabling development on this device. Please try rebooting and reconnecting the device. (0xE8000076) Is there a fix for this issue ? Apple developer forum has one related post , but with no solution You need to run iOS 9.1 beta together with Xcode 7.1 beta. Using a GM iOS and a beta Xcode together leads to this kind of problems. I'd suggest to simply use Xcode 7.0 GM with your installed version of iOS. 来源: https://stackoverflow.com/questions

iOS 9 UIPasteboard won't work in the background

余生长醉 提交于 2019-12-01 15:44:49
iOS 9's [UIPasteboard generalPasteboard].string will become null when the app is in the background running a background task or Today widget. Can't we retrieve a clipboard text in the background any more? Can you explain where do you launch generalPasteboard?. This is what I would do: In your app delegate's applicationdidBecomeActive method put in this code: [[NSNotificationCenter defaultCenter] postNotificationName:@"appDidBecomeActive" object:nil]; Next , in your current active view controller's init method subscribe to the notification. [[NSNotificationCenter defaultCenter] addObserver:self

Swift ios 9: Section header change position after reload data

吃可爱长大的小学妹 提交于 2019-12-01 15:26:53
I have plain UITableView with many sections and rows. Sections work fine. But sometimes after reload data of table, section change position. For example it was happened when i change tabs. What could be the problem? Image before changed tabs: Image after changed tabs: Update: Add code below: override func viewWillAppear(animated: Bool) { super.viewWillAppear(animated) self.dishesListTableView.reloadData() } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } func customizeCollectionView() { self.collectionView.delegate = self self.collectionView.dataSource = self self

how to make tabbar based on my json response array (ios swift)

前提是你 提交于 2019-12-01 14:27:08
Problem : I want to create tab bar based on my JSON response array, this means, if I got 6 elements in response it will create 6 tabs. Tried : I already made it by using horizontal scrolling collection view but I want to make it by original tab bar. So, how can I do this? please tell me the possible solutions and dont put this on hold.. this is my response so how can i do with this? tabs = ( { id = 0; name = Home; }, { id = 1; name = Winkel; }, { id = 2; name = Zoeken; } ); }) thanks @Ankit for swift code but when used your code and passing array with named "arr" getting this error Cannot

How to detect when a popover is dismissed in iOS 9

怎甘沉沦 提交于 2019-12-01 14:20:08
问题 I'm updating an app to use universal storyboards. I've created a popover segue to a new viewcontroller using interface builder by dragging from a button to my new viewcontroller and selecting 'Present As Popover' as the kind of segue. When the user presses outside of the popover (dismissing it) I need to be notified in the presenting view controller so I can undo their actions. How can I do this? Normally I would have created the popover manually and made my viewcontroller the popover's

iOS 9 UIPasteboard won't work in the background

谁都会走 提交于 2019-12-01 13:49:07
问题 iOS 9's [UIPasteboard generalPasteboard].string will become null when the app is in the background running a background task or Today widget. Can't we retrieve a clipboard text in the background any more? 回答1: Can you explain where do you launch generalPasteboard?. This is what I would do: In your app delegate's applicationdidBecomeActive method put in this code: [[NSNotificationCenter defaultCenter] postNotificationName:@"appDidBecomeActive" object:nil]; Next , in your current active view