how to get object content when debug in Xcode?
how can I get object properties (now just object references - 0x484ce00) in XCode debug tool like in the Eclipse IDE? ...
how can I get object properties (now just object references - 0x484ce00) in XCode debug tool like in the Eclipse IDE? ...
Hello, I have the following piece of code that I'm expecting to run on a touch event: - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *touch; touch=[touches anyObject]; CGPoint point=[touch locationInView:self.view]; if (CGRectContainsPoint([billTotal frame],point)) { [self picker...
I'm trying to allow ShortcutRecorder to record CMD+Tab. The problem is that, even if ShortcutRecorder has the focus, if I press CMD+Tab, the application switcher appears. Is there any way of allowing ShortcutRecorder to "intercept" the CMD+Tab? Thanks! ...
I want to disable the additional dependency check generated for an XCode project (and possibly also the CMake cache update verification), since this increase very very much the entire build time (about three times in my case). With Visual C++ is sufficient to set the flag SET(CMAKE_SUPPRESS_REGENERATION TRUE) but in XCode it does not...
Hi everyone ! I'm searching for a Xcode plugin to develop Python applications on Mac OS X platform. Can you give me some links please ? That will be very kind of you. Cordially, Vynile. ...
I am creating an iPad app. I do not yet have the $99 dev license but I understand I will need this to actually put my app on the device rather than just the sim. I want to install the app on a bunch of devices but I do not want to put it in the app store or go through the approval process(which I am assuming is in order to submit for the...
I've included a static library into my project (by using Xcode project references) and I've got a question about building with it. The included Xcode project has 2 build configurations, debug and release, whereas my project has 3, debug, release and distribution. When building with debug, my project is built with it's debug config, and...
i hav a navigation controller and when i place a image for navigation bar by hiding it the table view which is below nav bar is moving upside and first row is hided by image ,i should want that (row)table to move down ... if i am not hiding nav bar its working correctly and the image also added above the nav bar perfectly but i am not...
Solved Hey all, I'm currently working on a Split-View Based Application for iPad. I want the Root View Controller to navigate to another TableView, and from there, the users can select the appropriate row and display the information in the DetailViewController. I managed to code the navigation part in (The Root View Controller navigate...
I'd like to show the memory peak (not 'leak', but the highest quantity of memory used in small amount of time) of an iPhone app i am running in the simulator. Where shall i look precisely? PS I am using libxml2 and i suppose that the allocations done by the library aren't considered ...
This question is a follow on from the following: http://stackoverflow.com/questions/3235967/uitouch-event-not-responding I done more research and I know what the problem is, but I don't know how to solve it or even if it can be solved. I may have to take a new approach. I have a RootViewController and from this I load a second ViewCon...
I have a navigation controller and I want to set an image to the bottom tool bar and and I want to add buttons to it how would I do this? ...
I am using the cocos2d library. when xcode builds, it builds twice as many source files as it needs to, i.e. 162 instead of the 81 that come with the cocos2d library. this only happens when i build in release mode on the device, i.e. not device / debug nor simulator release / debug. I have tried clean all targets to no avail. I am us...
Hey all, I have this bizarre problem. I'm making a checklist program with XCode and I'm using UITableView with UITableViewCellAccessoryCheckmark. I can select cells and the checkmark will appear, but somehow, other cells that I have NOT yet selected below will also have a checkmark appear. Any ideas? Here's my check mark coding: - (voi...
Hi, I used to be able to show the value of a variable just by hovering my mouse over the variable during debugging in XCode. Somehow after I upgraded to iphone sdk 4, I cannot get the hovering popup anymore. Any idea on how to fix this? Thanks. Steven ...
I have been given an error on the Mac: objc[30344]: FREED(id): message release sent to freed object=0x3d55b60 How do I determine the object's symbolic identity so that I can fix the problem ? ...
I am building on XCode SDK 3.1.3 for iPhone. I am subclassing ABPersonViewController and presenting it as a modal view when user taps on a contact name in my iphone app. User can edit the address or change the ringtone and add it to their contact list as a new contact or update an existing contact. MySubClassedPersonViewController *x ...
Hi, I'm trying to create a new SQLite database for the iPhone using SQLite Manager firefox add-on. From what I understand, Z_METADATA AND Z_PRIMARYKEY tables must be included. How do I configure these though? I've tried to replicate a database by adding the same columns in each of these tables (for Z_METADATA --> Z_VERSION, Z_UUID, Z_PLI...
hey,every human,How to analysis iphone's device log? In addition, What is the meaning of the following content: and,what is the meaning of the : 0 libobjc.A.dylib 0x00007dd2 prepareForMethodLookup + 10", Thread 0 Crashed: 0 libobjc.A.dylib 0x00007dd2 prepareForMethodLookup + 10 1 libobjc.A.dylib ...
Hi, I have upgraded my XCode to versio 3.2.3 to support iOS4 on my iphone project. using the static analyser I checked for memory management problems. In one of my routines I get the following problem: I generate a user alert after adding an event to the calendar to give him a status. This runs fine, but the memory analyser doesn't li...