NSArray *arr=[[NSArray alloc]initWithObjects:@"A",@"AA",nil];
I set breakpoint then if I fire command po &arr; on lldb then i get address of arr variable i want also find address of @"A" object and @"AA" object How can I find
NSArray *arr=[[NSArray alloc]initWithObjects:@"A",@"AA",nil];
I set breakpoint then if I fire command po &arr; on lldb then i get address of arr variable i want also find address of @"A" object and @"AA" object How can I find
Something like this:
// This will print pointer values
print arr[0]
print arr
print &arr
// This will print object values
po arr
po arr[0]