xcode

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? ...

UITouch - Event not responding

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...

ShortcutRecorder record CMD+Tab

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! ...

CMake and XCode - disable CMake ReRun and CMake PostBuild Rules default generation

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...

Python Plugin for XCode

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. ...

building and installing ipad/iphone app privately (dev license question)

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...

Static libraries & build configurations in Xcode

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...

how to move table view in navigation controller

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...

Split-View Based Application - Navigation in RootViewController

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...

XCode and Instruments: How to get the app memory peak

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 ...

Modal views and touchesBegan

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...

How can I set a background image to navigation controller bottom tool bar?

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? ...

xcode duplicates build source files process

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...

UITableView Checklist Problem

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...

XCode debugging variable hovering not showing

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 ...

For a Mac error how do you determine the object when given its hex ID ?

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 ? ...

ABPersonViewController edit contact and navigate back

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 ...

When creating SQLite database for iPhone, how do I configure Z_METADATA and Z_PRIMARYKEY tables?

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...

How to analysis iphone's device log?

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 ...

Don't understand memory analysis

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...