Tagged Questions
0
votes
0answers
38 views
Interpreting iPhone Crash Log / Stack Trace
I'm using the TestFlight SDK and have received several crash reports identical to this one. However, I'm having trouble understanding it, and what the underlying cause of the crash is from the ...
1
vote
1answer
55 views
string of the @exp@ in breakpoint Log Message has only one first symbol
I need to trace my program. I made symbolic breakpoint:
Full string is:
"Class name is @*(char*)object_getClassName(*(long*)($esp+4))@"
But instead full class name I have only first one symbol ...
5
votes
0answers
148 views
Is LLDB really the best debugging tool for iOS? [closed]
I'm trying to debug my iOS code on device and simulator. Every time i drop to LLDB I find it extremely frustrating to do even basic commands like "print". I find lldb to be poor at resolving return ...
0
votes
0answers
39 views
NSLog not getting printed in the console area while debugging on device?
I am facing a weird issue.NSLog statements are not getting printed to the console when i am debugging my application using the device.I even pulled the log files using the organizer even there they ...
1
vote
2answers
53 views
What does “this class is not key value coding-compliant” mean?
I'm working my way through Cocoa Programming for Mac OS X (4th Edition), and, like many others, I'm getting stuck on a challenge; specifically, Chapter 8, Challenge 1. Unable to come to the solution ...
0
votes
1answer
72 views
ios app randomly crashes when scrolling through a table view, not sure how to handle error thrown
All I have is a simple table view that downloads content from twitter using AFNetworking and then displays it in cells. I have paging enabled in my tableview, and sometimes when I scroll between my ...
0
votes
1answer
23 views
gdb print NSString debugging
I'm using static analysis to verify an OSX program that I have developed personally. using GDB I have found the memory address of a NSString. Is there any way of parsing it as a NSString and read its ...
1
vote
1answer
55 views
debug: Obtain a list of all instance variables of an object (unknown type)
Is there any method to obtain (via debug) a list of all instance variables of an unknown object in Objective-c?
I use lldb for debug, but I admit that I don't know it very well.
Obviously I can't ...
2
votes
1answer
38 views
Xcode has the wrong debug values while paused in the debugger
I am having a strange problem in Xcode. After I use insertObject:withIndex: on this NSMutableArray object, the debug window shows the wrong value for the array even though the correct values are show ...
1
vote
2answers
56 views
XCode debugger weird behavior
I have an iPhone app that I am trying to debug.
One of my method returns a wrong value only when executing code, in the debugger it is fine.
int finalResponse = 0;
finalResponse = [data ...
0
votes
0answers
44 views
NSMutableArray debug [duplicate]
I read now Apple's guide about collections, and try to see their code. When I watched code step by step I saw something strange for me
Why in right colomn strings not under its indexes? And why ...
1
vote
1answer
74 views
Difference between debug and release
I have an app that runs a synchronization algorithm.
When I build and run it in debug mode (onto my iPhone 5) it all works fine.
However, when I archive it and upload it to TestFlight and then ...
0
votes
0answers
54 views
Any way to see who is triggering changes re: key value observing?
I'm using key value observing to perform specific actions whenever certain properties are changed (e.g., relayout subviews of a custom UIView whenever its frame or bounds change). Is there any way to ...
3
votes
2answers
79 views
Tweaking parameters at runtime? [duplicate]
When working with iOS, I sometimes have values I need to test with. I may adjust these values 30 times, and have to rebuild/rerun 30 times to test them. This is an obvious hassle.
So I was wondering ...
4
votes
2answers
187 views
How to get parameters using symbolic breakpoints in Objective-C
I have a breakpoint that looks like this
-[UITableViewCell setSelected:]
and it works, but I cannot figure out how to get the value that is being passed in.
I have tried -[UITableViewCell ...
0
votes
1answer
111 views
Error: message sent to deallocated instance in
This question derives from a previous question I asked. I had some help with debugging, but now I have this error appearing in the console of Xcode:
[CFURL absoluteURL]: message sent to deallocated ...
0
votes
1answer
96 views
What does this gdb output mean in Xcode?
I'm in Xcode using the gdb debugger, I just don't understand the error messages I am getting, they seem to change after every run too.
Here is a snippet of the code that is being shown:
0x001e8975 ...
0
votes
0answers
50 views
Automatically log every method call (+ parameters) [duplicate]
Since the project I'm currently working on has grown to be to be easily debugged, with lots of events, notifications, etc firing up at different points of time, I'm looking for an easy way to just log ...
0
votes
3answers
84 views
View object/property state in Xcode while debugging
So I'm new to Xcode, working on an iOS project and I'm having a heck of a time with the most fundamental debugging. Specifically I need to be able to view the state of objects as I step through the ...
0
votes
0answers
17 views
xcode: what options are there to add debug metadata to files/libraries for the debugger or profiler?
Xcode and the profiler treat foundation symbols differently in that they are greyed out in the stack trace or filtered out under certain circumstances.
Are there any special pragmas or other metadata ...
10
votes
1answer
156 views
How can I break on all symbolicated code in Xcode 4.6?
I'm untangling spaghetti code and as an exercise I'm walking through the application from its launch, breaking on applicationDidFinishLaunching and stepping over and into.
When this first method ...
1
vote
0answers
28 views
Segfault on loading a dylib with a constructor - only in Release builds
I'm writing a dynamic library in Objective-C, and recently I started experiencing a very strange issue, where loading the dylib triggers a segfault crash as soon as it's loaded. The trouble is, this ...
0
votes
1answer
63 views
SIGABRT between loadView and viewDidLoad
I'm new to iOS development, and having trouble identifying the source of a SIGABRT. I've narrowed it down to something that happens during initialization of a UIViewController subclass, specifically ...
1
vote
1answer
80 views
Won't call on method in other class, Objective-C
I am trying to learn Objective-C for iOS. i am currently following the "coding together" on iTunesU. Although i have got stuck since i can't get my controller to call on a method from another class. ...
3
votes
2answers
246 views
error: Couldn't materialize struct: Couldn't read eax
For debugging on iOS simulator, I used to be able to read out $eax register and get the error message. However, I don't know if it's the new XCode version 4.6 and iOS 6.1, I can't do that any more.
...
0
votes
0answers
61 views
Marking heap shows I have a perpetual retain (ARC enabled). How to fix?
I log in to the app, then sign out, and make another mark (rinse & repeat). As you can see, my Loginview is getting retained on every instantiation. What's the best/easiest way to find out what ...
1
vote
0answers
119 views
Getting around LLDB printing problems e.g. CLLocationCoordinate2D and recognizing Macros in debugger
LLDB has various problems printing struct fields of double type, as documented here:
strange-behavior-in-lldb-when-printing-a-double-type-struct-member.
In my own case I tried to print a struct ...
0
votes
3answers
101 views
How to test UILocalNotification in didFinishLaunchingWithOptions
I would like to test how my app behaves when the app is quit and the user taps a notification in notification center so that my app is launched. In - didFinishLaunchingWithOptions you can check for ...
1
vote
2answers
84 views
NSDictionary is treated as a boolean - can't debug
NSDictionary *tokenData = [[responseDict objectForKey:@"data"] objectForKey:@"multipass"];
dispatch_async(dispatch_get_main_queue(), ^{
NSString *card = [NSString stringWithFormat:@"%@-%@",
...
-3
votes
1answer
57 views
Objective-c DenseMap error [closed]
I would like to know why it's happening, sometime in my domino game, at time to put domino at table this error is showed, sorry for my bad english. I'm looking for someting that help me to solve this, ...
3
votes
1answer
286 views
How to change NSNumber value in XCode while debugging?
My class has a member variable which is a NSNumber, like so:
@interface C : NSObject {
NSNumber* _n;
}
During debugging, I am stopped at a breakpoint, and I want to change the value of the ...
1
vote
2answers
99 views
iPhone only vibrates when debugging app
I'm programming an iPhone app that requires repeated vibration until the user stops it, and I am doing it with a loop called by a thread like so:
-(void)vibrateLoop {
while (1) {
...
3
votes
2answers
94 views
App crashing without errors
In my app, I have four buttons. When I press two of the four buttons, the app freezes. The weird thing is that no errors appear and there is nothing in the debugger window. I am new to iOS ...
1
vote
1answer
191 views
iphone application - trace all method calls
I have developed an iphone application and submitted to the app store. Now, if anyone downloads the application and if the app gets crashed, i get a crash log from app store. But i could not ...
1
vote
1answer
53 views
AQXMLParser and EXC_BAD_INSTRUCTION from all over the app
A lot of crash reports coming in with this theme. What could be causing this? It's never in the same place twice. I am using AQXMLParser but the crashes are always in some place unconnected to that. ...
1
vote
1answer
37 views
How to debug an incorrect binding
I got the error cannot create BOOL from object with CoreData. I read a lot of questions on this, all leading to the same conclusion: an incorrect binding in IB.
Is there a way I could for example list ...
1
vote
1answer
174 views
Debug another selector while single stepping in Xcode using lldb
I am in my code stopped at a breakpoint at the (lldb) prompt. I can message objects and get their value printed on the console.
(lldb) p [self computePI]
(float) $1 = 3.0
Whoa! Something is wrong ...
2
votes
1answer
166 views
Using atos to determine crashed method name with dSYM
I have a Console stack (not a crash report) from a user, and I'm trying to determine which method call in my application was the last man standing.
I know which version of the application they were ...
3
votes
1answer
115 views
XCode stops multiple times at breakpoints
XCode 4.5.2 with lldb debugger
When debugging in various places, XCode likes to stop multiple times at certain breakpoints. Some only 2 or 3 times, others 10+ times.
Also, when stepping through ...
0
votes
1answer
46 views
Finding minor performance hogs in Objective-C
To discover perfomance hogs in a specific method I often do something like this:
// Some line of code
LogTimeInterval();
// Some other line of code
LogTimeInterval();
// Some other line of code
...
2
votes
1answer
111 views
LLDB equivalent of 'detach' in GDB in Xcode?
Is there any equivalent of GDB's 'detach' command in LLDB?
1
vote
1answer
310 views
Xcode 4.5.2: cannot inspect object properties in debugger
When I'm debugging in Xcode 4.5.2 and I open the disclosure triangle for an object in the inspector, I often don't see its properties. For example, in the screenshot below, I'm trying to inspect the ...
1
vote
1answer
441 views
What do these build errors mean & how can I better debug in situations like this? XCode, PayPal SDK
I need to understand what this means & how I go about resolving it in future.
I have been following this guide & followed it exactly,
...
4
votes
1answer
69 views
Objective-C strange appearance in debugger after stringByReplacingOccurrencesOfString
I´m on Mac OS X and Xcode 4.5.2
When executing these lines:
NSString *asSrcFileName = @"chromebar.png"
NSString *asSrcExtName = @".png"
NSString *asTempName = [asSrcFileName ...
1
vote
2answers
923 views
Message sent to deallocated instance using ARC
I wouldn't normally ask questions like this, but I really cant get my head around it. I have a class 'GetTableInfoFromDatabase', which connects to my database and downloads some JSON. This works great ...
2
votes
0answers
74 views
XCode - Finding errors
I'm relatively new to XCode (4.5) and i've ran into some problems with finding an error.
My project has suddenly started throwing out the following error when I attempt a model segue to open a view ...
0
votes
1answer
53 views
When debugging using xcode how do we know fast the frame of a view (or other information)?
This has bugged me several time.
I am debugging a custom subview for example.
I want to know the type of subviews that my custom subviews have.
I type:
(lldb) po self.subviews
error: property ...
1
vote
2answers
43 views
trouble debugging during runtime
I have written a some code for a drill down table app I have been making, but the app crashes only during runtime. Xcode doesn't give me any errors while building the app. The debugger outputs:
...
0
votes
2answers
181 views
UITableViewCellAccessibilityElement release Crashes on Tab Switching
I am developing a tabbed application for iOS (5 upwards).
My app is experiencing crashes in the simulator after a few switches between 2 of the 3 tabs, that both contain tables (and some other - here ...
0
votes
1answer
161 views
How to trace a value of UIWebView.scrollView.contentOffset
I have a UIWebView in which I set content offset at some point:
myWebView.scrollView.contentOffset = CGPointZero;
It turns out afterwards that this view is scrolled to the bottom of its content. ...

