Hi,
I have an existing project which has it own Makefiles. And it compiles find on MacOS.
Is it possible for me to create a new XCode project but without getting it to compile it under XCode, but I still can use Xcode as my debugger?
...
Hi,
How can I switch to use a different gdb client in Xcode on MACOS? Or if this is possible at all?
Thank you.
...
hello all, i have a very big problem...
i want to shrink picker view's height like it show only one row one column.and the height of the picker view must be equal to the height of row...
please post sample code also if you know how to do this. i m using interface builder to display picker view.
...
i want to show a pickerview when i click on a uitextfield not the keyboard and fill the value in text field form the picker view..
any one knows this???
...
I've been reading that by default there is an -mthumb compiler flag which reduces code size by 35%. However, in a floating-point calculation intensive app like mine, this is not an good option, like apple says. I'd like to try it out if it changes anything.
...
I have a switch statement similar to this one:
switch (number)
{
case 1:
if (imageView1.hidden == NO)
{
imageView1.hidden = YES;
} else
{
imageView1.hidden = NO;
}
break;
case 2:
if (imageView2.hidden == NO)
{
imageView2.hidden = YES;
} else
{
imageView2.hidden = NO;
...
i have a view and i want functionality something like this..
first UITextfield is price for ex- 10000
second UItextField precentage for ex-70
third UIlabel which will show the result for ex- $ 7,000.00
i want this and also as soon as i type 7 the result label should show $ 700.00
...
is there any way to move some textfield in a simple UIView up so that they could not be hide behind the keyboard.? is it possible without using UIScrollView
...
Xcode seems to be doing something annoying today.
I like editing my source code so that I'm typing roughly in the vertical center of my Xcode window. I don't like typing near the bottom or the top of the window as it hides code right before or right after the code I'm busy editing.
Lately, while editing an implementation file, Xcode h...
For some reason, the representation in Xcode "Groups & Files" does not match the file hierarchy in the folder where all my real project files are. And for some reason, I can't copy a entire group or even single file and put that into another project. So I have a nice hierarchy of images within "Groups & Files", but all thos ordered image...
Hello there, it seems I've been searching for a long time and haven't found a great, easy, answer to my problem.
I'm using XCode with Cocoa/ObjC and am trying to create an NSTableView which will load values from an NSDictionary/Array into different sections of a cell.
For example, I'm trying to get an NSImage, NSTextField and other ite...
Update
Daniel was close, it just wasn't the search path. The Prefix Header under GCC 4.2 was set to:
$(SYSTEM_LIBRARY_DIR)/Frameworks/AppKit.framework/Headers/AppKit.h
I missed that when I was combing through the first 2 times.
I removed it and now all is well.
Original Question
I have been using/building products with a static lib...
I think the title is pretty clear. I have ran into this twice now.
The first time it indicated a problem, and my project wouldn't compile.
The second time everything still worked.
Is it just a fluke if my code still builds when this turns red?
...
I separated my header files in folders like:
libraryA
|-libA1.h
|-libA2.h
libraryB
|-libB1.h
|-libB2.h
Xcode however removes the path by default, so
#include "libraryA/libA1.h"
#include "libraryB/libB1.h"
doesn't work, only:
#include "libA1.h"
#include "libB1.h"
How can I make xcode preserve the path names for includes?...
Is there a way to hide/unhide all comments in xcode source files?
This would be very helpful when working with code that has way too many comments added.
...
Question about bundles and file access.
I've adding a series of folders to my project (using the Add existing file option). This results in the folder contents being shown in Xcode as a blue folder.
The following works:
NSString *imageName = [NSString stringWithFormat:@"/File-03/images/image-%02d.jpg", imageIndex];
return [UIImage im...
Very often, when I run my unit tests for my iPhone project, XCode feels like making the actual errors disappear from the errors and warnings group. These errors are often under the general sub-item of that group, and often when I need to read the text of the error in detail, all errors disappear and all I have left are the build warning...
There are assembly language libraries for the ARM for doing signal processing and other good stuff called "OpenMAX DL for ARM11 processor family".
When you download the library from the ARM site, it contains .s assembly files. How can these be compiled with Xcode and called from Objective-C for the iPhone? There are examples of inline a...
Whenever i start my app and i have my view setup to see the code and the console in the debug view (in a all-in-one setup) my source view get switched to asm code for asm__dyld__dyld_start
...
i want a view with UITabBAr at The bottom with some buttons+Navigation controller on each view and a tableview inside the view using interface builder and windows basaed application template. i want a step by step guide to do this
...