In xcode 7.3 on OS 10.11.3 and 10.11.4, when I stop the debugger inside any app delegate method and try to examine any object instantiated inside the app delegate, or even the app delegate itself, I get this warning in the debugger:
error: warning: Stopped in a context claiming to capture an Objective-C object pointer, but 'self' isn't available; pretending we are in a generic context error: member reference type 'AppDelegate *const' is a pointer; did you mean to use '->'? error: incomplete definition of type 'AppDelegate' note: forward declaration of 'AppDelegate' error: 2 errors parsing expression This particular time I was in the application:didFinishLaunchingWithOptions: method, but stopping in any method in the app delegate gives the same error when trying to look at any of the app delegate's objects. This does not happen with xcode 7.2. I do notice that in 7.2 that ‘self’ for the app delegate is listed as (AppDelegate *), while in 7.3 it is (AppDelegate *const). Clicking on the disclosure arrow next to self for the app delegate does not reveal anything in 7.3, while it does in 7.2. Any ideas as to what might be wrong? August
_______________________________________________ Do not post admin requests to the list. They will be ignored. Xcode-users mailing list (Xcode-users@lists.apple.com) Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/xcode-users/archive%40mail-archive.com This email sent to arch...@mail-archive.com