LoginSignup
2
1

More than 5 years have passed since last update.

iOS SDK 9 beta 5で Multiple methods named 'setTransform:' found with mismatched result, parameter type or attributes

Posted at

発生したコード

UIToolbar *toolBar;
for (UIBarButtonItem *item in [toolBar items]) {
    [item.customView setTransform:CGAffineTransformIdentity];
}

解決方法

UIToolbar *toolBar;
for (UIBarButtonItem *item in [toolBar items]) {
    [(UIView *)item.customView setTransform:CGAffineTransformIdentity];
}
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1