1

I have an Ad on my app which, before when you clicked on it, would load up the standard test ad screen though recently when I have done this it come back with this error:

*** Assertion failure in NSDictionary *_UIRecordArgumentOfInvocationAtIndex(NSInvocation *, NSUInteger, BOOL)(), /SourceCache/UIKit/UIKit-2380.17/UIAppearance.m:1118

This doesn't seemed to have happened to anyone else from a google

I am testing on ios 6 which is where the bug happens and works fine on IOS 7

Hive7
  • 3,599
  • 2
  • 22
  • 38
  • Is this in iOS 7.1? The underscore in front of the function name suggests that it might be an internal Apple bug. – Simon Goldeen Mar 18 '14 at 20:05
  • 1
    Have you seen [this question](http://stackoverflow.com/questions/19863972/mfmailcomposeviewcontroller-crashes-because-of-global-appearance-properties-on-i)? It seems to be related. – lootsch Mar 18 '14 at 20:14
  • @lootsch no I had not seen this question thank you for pointing it out for me as it works fine now – Hive7 Mar 18 '14 at 20:17

1 Answers1

2

This issue seems to be caused by a global appearance setting.
There is a similar error cause by this setting as pointed out in this question:

Use UITextAttributeTextColor instead of NSForegroundColorAttributeName.

Community
  • 1
  • 1
lootsch
  • 1,867
  • 13
  • 21