Getting strange debugger message: Assertion failed: (cls), function getName: what is this?

前端 未结 6 822
一生所求
一生所求 2021-02-01 17:47

Since I upgraded from Xcode 3.2.3 to 3.2.4 and iOS 4.0.1 to iOS 4.1 SDK, when I set a breakpoint in my code and single-step over instructions, at each step, the debugger will sp

6条回答
  •  暖寄归人
    2021-02-01 17:59

    I ran into this - and here's the reason mine happened: I had used +localizedStringFromDate:dateStyle:timeStyle: in my code. Worked fine on the iPhone, but it's not available pre-4.0 SDK, so it coughed on the iPad. See if you're calling some routine that's either no longer available in the SDK, or available only in later versions. Frankly, I can't wait for 4.1 on the iPad!

    -Owen

提交回复
热议问题