"changing property masksToBounds in transform-only layer, will have no effect" in Xcode 7

IosIos9Xcode7 Beta6

Ios Problem Overview


I am receiving this warning in the debugger console when I launch my app on iPad Xcode 7 beta 6. There was no such warning till Xcode 6. I don't understand why it may have come and that too, only on iPad.

According to an Apple forum thread it could be a bug from Apple's side. Has anyone found a solution for this?

Ios Solutions


Solution 1 - Ios

In order to get rid of this error un check clip to bounds option and put scale to fill to view to all view,UIStackView you have used in your project.

Solution 2 - Ios

This is a bug in iOS, and still exists in the latest version, iOS 9.1. If you're reading this, please do us all a favor and file a bug report with Apple.

You may duplicate my radar (id: 23666339), which can be viewed on Open Radar here: https://openradar.appspot.com/23666339

The bug causes the keyboard to take forever to appear, and exists only on iPad as well as the iPad simulators.

UPDATE: This issue has been resolved as of iOS 9.2 (13C75).

Solution 3 - Ios

It could happen because you changed drawing attribute of the StackView:

enter image description here

when I set clips to bounds to true I get this warning

Solution 4 - Ios

In case anybody is facing this issue because of a UIStackView in iOS 14, please check out this article:

https://useyourloaf.com/blog/stack-view-background-color-in-ios-14/

Long story short:

In iOS 14, UIStackView has changed from using a CATransformLayer to using a CALayer. I saw this first mentioned by Renaud Lienhart (@layoutsubviews) and then confirmed by David Duncan (@rincewindsama). This change is not (yet) mentioned in any release note or documentation (bug report FB8363575).

Solution 5 - Ios

Problem Warning -> - changing property masksToBounds in transform-only layer, will have no effect

Solution = Simply uncheck the clip to bound from UIstackview box.

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionStudentXView Question on Stackoverflow
Solution 1 - IosAmit VermaView Answer on Stackoverflow
Solution 2 - IosT BlankView Answer on Stackoverflow
Solution 3 - IosПаша МатюхинView Answer on Stackoverflow
Solution 4 - IosJeremie VinckeView Answer on Stackoverflow
Solution 5 - IosMilan Savaliya MView Answer on Stackoverflow