Table of Contents
Previous Section
The output from the trace methods appears in Project Builder's launch panel.
// Objective-C
- init {
[super init];
[[self application] traceAssignments:YES];
[[self application] traceScriptedMessages:YES];
return self;
}
// Java
public Main() {
super();
this.application.traceAssignments(true);
this.application.traceScriptedMessages(true);
.
.
.
}
Table of Contents
Next Section