active questions tagged xcode - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:56:58Z http://stackoverflow.com/feeds/tag/xcode http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1942085/xcode-compiles-iphone-app-for-debug-not-distribution-linking-error-file-not-fo 0 Xcode compiles iPhone app for Debug not Distribution - Linking error "file not found" James Testa 2009-12-21T19:28:21Z 2009-12-21T19:28:21Z <p>Xcode compiles my iPhone app for Debug fine and the application works fine on my iPhone. But when I compile for Distribution I get the following Linking error:</p> <pre><code>/Users/jtesta/Documents/WaterTaxi_prod_v1.1/build/WaterTaxi.app/WaterTaxi ld: file not found: collect2: ld returned 1 exit status </code></pre> <p>It's not clear to me what file is not found. It almost looks like it can't find the executable in the application bundle. Any ideas what could be causing this? </p> http://stackoverflow.com/questions/1940460/how-do-i-open-a-web-page-inside-my-iphone-application-not-open-a-link-in-safari 1 How do I open a web page inside my iphone application (not open a link in Safari)? Vinny 2009-12-21T14:38:57Z 2009-12-21T19:25:53Z <p>I have an iphone sdk application and want to tweak it.. as I've had a great idea on how I want my interface to appear.</p> <p>I'm trying to create several buttons that will open a web page within my application but have failed to do so countless amounts of times now.</p> <p>(I don't want the button to open a link in safari, I already know how to do this and it's not what I'm trying to achieve)</p> <p>The application must not shut down in order to operate any links (i.e close down to open the link in safari as stated above.)</p> <p>MORE INFO-----------------------------------</p> <p>i already have the application and yes it is working and complete, however a while ago i decided that id like to change the interface on my application, but havnt been successful in doing so.</p> <p>Currently i am using a webView based app which works perfectly, i have my website and another within the application (using a tab bar with two tabs within it).</p> <p>Now i would like to completely re-model my app by starting from scratch..</p> <p>using a uiwebview i want to place several buttons on the uiwebview page and have them as links which will direct my members to different sections of my website when pressed..</p> <p>I have managed to do this but when the buttons are pressed, my application is closed and the link is then opened in safari, which is not what i want.</p> <p>I would like the links to open within my application</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1941494/add-a-custom-compiler-to-xcode-3-2 1 Add a custom compiler to XCode 3.2 racha 2009-12-21T17:35:00Z 2009-12-21T17:35:00Z <p>I have a working gcc 4.3.3 toolchain for an ARM Cortex-m3 and would like to integrate it into XCode.</p> <p>Is there a way to set up XCode (3.2) to use this gcc toolchain instead of the built-in GCC 4.2?</p> <p>What I've tried so far: I've added a modified copy of the <code>GCC 4.2.xcplugin</code> and changed the name, version and executable path. It shows up in XCode but whenever I set the "C/C++ Compiler Version" to the custom compiler it fails with </p> <blockquote> <p>Invalid value '4.3.3' for GCC_VERSION</p> </blockquote> <p>It seems like the valid version numbers are hardcoded somewhere else because even when I remove the original <code>GCC 4.2.xcplugin</code>, the value <code>4.2</code> remains valid (but is not visible in the "C/C++ Compiler Version" drop down anymore).</p> http://stackoverflow.com/questions/1882571/how-do-i-build-the-boost-getting-started-examples-using-xcode 1 How do I build the boost "Getting Started" examples using XCode? Matthew Lowe 2009-12-10T17:21:55Z 2009-12-21T16:13:58Z <p>So let's say you want to build the Boost "Getting Started" examples and link to them using an Xcode project rather than building at the command line. You try the header-only option and it works fine.</p> <p>But then you take the example source:</p> <pre><code>#include &lt;boost/regex.hpp&gt; #include &lt;iostream&gt; #include &lt;string&gt; int main() { std::string line; boost::regex pat( "^Subject: (Re: |Aw: )*(.*)" ); while (std::cin) { std::getline(std::cin, line); boost::smatch matches; if (boost::regex_match(line, matches, pat)) std::cout &lt;&lt; matches[2] &lt;&lt; std::endl; } } </code></pre> <p>And you do the following:</p> <ol> <li>Build the boost libraries using ./bjam install</li> <li>Open Xcode and create a new C++ command line utility project.</li> <li>Drag libboost_regex.dylib into the Products folder in the Groups &amp; Files treeview (checking the option that allows it copy the file)</li> <li>Set the project options so that Header Search Paths points to the Boost include folder</li> <li>Build and Run the project!</li> </ol> <p>Sadly, if you have the console open (Run | Console) you're going to see an error that it can't find the dylib:</p> <pre><code>dyld: Library not loaded: libboost_regex.dylib Referenced from: /Users/matt/Documents/Boost/test/GettingStarted/build/Debug/GettingStarted Reason: image not found </code></pre> <p>So, not knowing a better way to get Xcode to do this, you copy the dylib into your_project/build/debug/ and it runs! Hooray!</p> <p>Detail-oriented person that you are, you type some stuff into standard in to try it out:</p> <pre><code>&gt; Subject: foo bar baz &gt; foo bar baz </code></pre> <p>And then it segfaults.</p> <pre><code>Program received signal: “EXC_BAD_ACCESS”. </code></pre> <p>ACK!</p> <p>But have no fear. I know what the problem is! And if nobody beats me to it, I'll post the solution after lunch.</p> http://stackoverflow.com/questions/1939515/xcode-target-membership-of-frameworks 0 Xcode: target membership of frameworks? dave-gennel 2009-12-21T11:13:24Z 2009-12-21T14:12:23Z <p>Hi everyone,</p> <p>I have a question about the far right column of your Xcode project (<a href="http://img192.imageshack.us/img192/971/picture9u.png" rel="nofollow">image here</a>)</p> <p>Apple's documentation tells me this about that column:</p> <blockquote> <p><strong>Target membership.</strong> The column marked by the target icon indicates whether the file is included in the active target. If the checkbox next to a file is checked, then the active target includes that file.</p> </blockquote> <p>So what if I have <code>#import &lt;Security/Security.h&gt;</code> in my .m file, do I still need to link it with the target membership? What if a .m file has that and it's not linked but the code works? Should I remove the line? Should I remove the framework?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1023289/creating-a-highscore-like-system-iphone-side 0 Creating a highscore like system, iPhone side. natanavra 2009-06-21T05:45:15Z 2009-12-21T13:11:39Z <p>I'm sorry for opening a new question, I had to - as I wrote the other question from my iPhone as unregistered user and it is not very comfortable to write from the iPhone.</p> <p>Rephrasing the question:</p> <p>Is it possible to use the:</p> <blockquote> <p>[NSMutableArray writeToURL:(NSString *)path atomically:(BOOL)AuxSomething];</p> </blockquote> <p>In order to send a file (NSMutableArray) XML file to a url, and update the url to contain that file?</p> <p>for example: I have an array and I want to upload it to a specific URL and the next time the app launches I want to download that array.</p> <blockquote> <p>NSMutableArray *arrayToWrite = [[NSMutableArray alloc] initWithObjects:@"One",@"Two",nil];</p> <p>[arrayToWrite writeToURL:</p> <p>[NSURL urlWithString:@"mywebsite.atwebpages.com/myArray.plist"] atomically:YES]; </p> </blockquote> <p>And at runtime:</p> <blockquote> <p>NSMutableArray *arrayToRead = </p> <p>[[NSMutableArray alloc] initWithContentsOfURL:[NSURL urlWithString:@"mywebsite.atwebpages.com/myArray.plist"]];</p> </blockquote> <p>Meaning, I want to write an NSMutableArray to a URL, which is on a web hosting service <br>(e.g. batcave.net), the URL receives the information and updates server sided files accordingly. A highscore like setup, user sends his scores, the server updates it's files, other users download the highscores at runtime.</p> <p>I hope this is clarified.</p> <p>Edit: What I am looking for is scripting PHP or ASP so the website, the URL where the data is sent to would know how to handle it. I want an example or a tutorial on how to implement this scripting for handling data, if it's possible to do this on a web hosting service.</p> <p>~Thanks in advance.</p> http://stackoverflow.com/questions/1939219/how-do-i-see-the-llvm-intermidiate-representation-in-xcode 0 How do I see the llvm intermidiate representation in Xcode David Lehavi 2009-12-21T09:58:42Z 2009-12-21T09:58:42Z <p>I'm compiling with clang-llvm 1.0 on Xcode 3.2.1</p> <p>I want to see LLVM's intermidiate representation. How do I do this ?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1937963/iphone-objective-c-basic-example-question-about-properties 1 iPhone Objective-C Basic Example Question (about Properties) koldfyre 2009-12-21T03:10:25Z 2009-12-21T09:37:02Z <p>Sorry I couldn't give a more descriptive title. My question (after looking at the code below) is what <strong>statusText</strong> is. Is it an IBOutlet or a UILabel? How does "@property (retain,nonatomic) UILabel *statusText" work? Does that statement mean that statusText is a property???</p> <p>Thanks for answering. If there are any questions, please feel free to comment.</p> <p><strong>Button_FunViewController.h</strong></p> <pre><code>@interface Button_Fun2ViewController : UIViewController { IBOutlet UILabel *statusText; } @property (retain,nonatomic) UILabel *statusText; - (IBAction)buttonPressed: (id)sender; </code></pre> <p><strong>Button_FunViewController.m</strong></p> <pre><code>@synthesize statusText; - (IBAction)buttonPressed: (id)sender { NSString *title = [sender titleForState:UIControlStateNormal]; NSString *newText = [[NSString alloc] initWithFormat:@"%@ button was pressed.", title]; statusText.text = newText; [newText.release]; } </code></pre> http://stackoverflow.com/questions/1290090/ipod-touch-on-device-debugging-crashes-excbadinstruction-excbadaccess 0 iPod Touch on device debugging crashes (EXC_BAD_INSTRUCTION, EXC_BAD_ACCESS) sfider 2009-08-17T19:59:22Z 2009-12-21T09:10:05Z <p>I'm using iPod Touch 2G as a developement device with Xcode 3.1.3. When I try to trace the execution on the device from a breakpoint in the debugger I get EXC_BAD_INSTRUCTION, EXC_BAD_ACCESS or some error with debugger not being able do disassemble something. The same thing will work properly on iPhone Simulator. Previously I've been able to trace the execution from a breakpoint on some other iPod Touch 2G and iPhone 3G devices.</p> <p>If not interrupted with a breakpoint the app will work properly. Also before any "stepping" I can investigate variables currently on the stack and their values seem to be correct.</p> <p>Is it possible that the device is somehow flawed or should I look into my project configuration more closely (and what should I look for)?</p> <p>EDIT: After playing with project configuration I've found that debugger starts to act normally after disabling "Compile for Thumb" option. The question now is why is it so?</p> http://stackoverflow.com/questions/1937570/determining-value-of-nsuinteger 0 Determining value of NSUInteger 4thSpace 2009-12-21T00:08:19Z 2009-12-21T00:10:57Z <p>I'd like to view the value of an NSUInteger at any given time. I assign the value below:</p> <pre><code>NSUInteger test = -1; </code></pre> <p>Then try to view it in the debugger:</p> <pre><code>(gdb) po test Cannot access memory at address 0xffffffff (gdb) p test $1 = 4294967295 Current language: auto; currently objective-c </code></pre> <p>Far as I know, it is a value type. Where is -1?</p> http://stackoverflow.com/questions/1935866/iphone-free-developer-certificate-just-for-learning 0 iPhone: Free developer certificate just for learning fabian 2009-12-20T13:46:21Z 2009-12-20T20:49:57Z <p>Hi, i was wondering if i can get a iphone developer certificate for free? I just want to learn objective-c and iphone development. </p> <p>// No, the xCode iPhone Simulator don't have an accelerometer etc.</p> <p>g.</p> http://stackoverflow.com/questions/1870020/generating-a-versionstring-from-major-minor-patch-build-defines-for-use-in-a-pli 0 Generating a VERSION_STRING from major/minor/patch/build defines for use in a plist g-Off 2009-12-08T21:36:57Z 2009-12-20T19:33:19Z <p>I have a plist that is processed with a precompiled header file and in it there is the "variable" VERSION_STRING used a few times in such fields as CFBundleGetInfoString, ie the value for the key CFBundleGetInfoString is: MyProduct VERSION_STRING Copyright © 2009 MyCorp</p> <p>In MyHeader.h (which is the set as the Info.plist prefix header I would like to be able to build VERSION_STRING into the form MAJOR.MINOR.PATCH.BUILD where I have</p> <pre><code>#define MAJOR 1 #define MINOR 0 #define PATCH 0 #define BUILD 23 </code></pre> <p>For some reason I seem to be incapable of doing this. I might just be having one of those moments</p> http://stackoverflow.com/questions/1598444/iphone-xcode-3-1-4-3-1-2-sdk-watchpoints-dont-work 3 iphone Xcode 3.1.4 3.1.2 SDK, watchpoints don't work? yamo 2009-10-21T02:32:53Z 2009-12-20T18:31:41Z <p>If I try to set a watchpoint I get a gdb error:</p> <p>" can't clear hardware watchpoints without the 'Z2' (write-watchpoint) packet "</p> <p>Then it seems to corrupt the device (on restarting the device it complains that the OS is too old for the SDK, even though it's OS 3.1.2).</p> <p>I've got a bug to track down that really would be easy to track down with a watchpoint so this really is a pain.</p> <p>Anybody know if watchpoints are supposed to work? How to get them to work?</p> http://stackoverflow.com/questions/1936508/problem-alertview-must-open-subview-but-close-it 0 Problem: AlertView must open subview but close it Obliviux 2009-12-20T18:12:04Z 2009-12-20T18:12:04Z <p>I have a View that must open a subview if you click "Open Store" in a AlertView, but the subview is open, and after 1 sec closed again. Where is the problem?? </p> <p>This is my code:</p> <pre><code> //my alertview UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"You must buy this item to use it!" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Go Store",nil]; [alert show]; [alert release]; } } - (void)alertView:(UIAlertView *)alert clickedButtonAtIndex:(NSInteger)buttonIndex { if (buttonIndex == 1) { [[Airship shared] displayStoreFront]; //my subview } else { } } </code></pre> http://stackoverflow.com/questions/1935993/xcode-3-2-1-doesnt-show-contents-of-nsmutablearray-when-debugging 0 XCode 3.2.1 doesn't show contents of NSMutableArray when debugging? TimM 2009-12-20T14:31:23Z 2009-12-20T17:34:06Z <p>I am struggling to understand why the following code doesn't show an array with any contents when I debug in XCode and yet the NSLog clearly displays contents, as does GDB using po?</p> <pre><code>- (IBAction)action: (id)sender { NSMutableArray *btnTitles = [NSMutableArray arrayWithObject: @"Open in Safari"]; NSLog(@"%@",[btnTitles description]); // in xcode - btnTitles shows 0 elements, nslog shows 1? if ([MFMailComposeViewController canSendMail]) { [btnTitles addObject: @"Email Article"]; } NSLog(@"%@, %i",[btnTitles description], [btnTitles count]); // in xcode still shows 0 items, nslog shows 2 </code></pre> <p>I am using Snow Leopard and Xcode 3.2.1 - and at first I thought my variable was being released, however the NSLog and using GDB seem to indicate that everything is fine. However when I hover over the btnTitles variable it shows - (variable 0 objects). Similarly, if I do Open In Window for that variable, it has a title: btnTitles[(null)()-(null)] and it shows variable, 0 objects). Yet in the console I am seeing:</p> <pre><code>2009-12-20 14:29:03.352 MyApp[11125:207] ( "Open in Safari" ) 2009-12-20 14:29:05.499 MyApp[11125:207] ( "Open in Safari", "Email Article" ), 2 </code></pre> <p>This has me stumped - the code looks like it should be ok - I am initialising the variable correctly (I have tried doing retain as well).</p> <p>Can anyone spot what I am doing wrong, or is this a bug in the the new XCode on Snow Leopard?</p> <p>Tim</p> http://stackoverflow.com/questions/1431130/uitextview-in-iphone 0 UITextView in iphone Harita 2009-09-16T05:36:32Z 2009-12-20T17:00:03Z <p>hi i am creating textview(editable) through coding in uitableview in cellforrowatindexpath delegate. textview is showing in every row correctly. the problem is that when i am enter text in textview and scroll the tableview, then text disappear from textview. if anyone has any idea?</p> http://stackoverflow.com/questions/1935030/uiimageview-responds-to-partial-touchesbegan-code-before-the-3rd-click-why 0 UIImageView responds to partial touchesBegan code before the 3rd click. WHY?????? zerlphr 2009-12-20T06:24:05Z 2009-12-20T07:44:55Z <p>On simulation, after i load the UIView that contains 52 UIImageView; it takes at least 3 clicks before the animation begins. On the first 2 clicks, the touchesBegan is invoked. i know that because the NSLog(@"Just before for loop); was displayed on the console. However the console states that the cardAnimationArray is empty in the first 2 clicks.</p> <p>Only after 3rd click, the animation begins. The weird thing is that, by clicking other cards (UIImageView) after 3rd click, the animation begins on 1st click (behaves as normal). </p> <p>Somehow it just doesn't step into the for loop in the first 2 clicks! why is this so???</p> <p>MY code is as below:</p> <pre><code> - (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event { NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; NSString *myPathDocs = [documentsDirectory stringByAppendingPathComponent:@"Cards.plist"]; NSMutableArray *array = [[NSArray alloc] initWithContentsOfFile:myPathDocs]; NSMutableDictionary *dict = [array objectAtIndex:self.tag]; NSString *cardMoved = [dict objectForKey:@"Card"]; NSMutableArray *cardAnimationPreloadingArray = [[NSMutableArray alloc] initWithCapacity:20]; self.cardAnimationArray = [[NSMutableArray alloc] initWithCapacity:20]; [cardAnimationPreloadingArray release]; NSLog(@"Just before for loop"); for (int k; k &lt; 20; k++) { NSLog(@"counting i: %d",k); int j = k+1; cardMovedImageName = [NSString stringWithFormat:@"Animated %@%d.png",cardMoved,j]; NSLog(@"cardMovedImageName %@ at %d",cardMovedImageName, k); UIImage *cardMovedImage = [UIImage imageNamed:cardMovedImageName]; [cardAnimationArray insertObject:cardMovedImage atIndex:k]; } CGRect selfFrame = self.frame; selfFrame.size.width = 110; selfFrame.size.height = 164; [self setFrame:selfFrame]; [self.superview bringSubviewToFront:self]; CGPoint pt = [[touches anyObject] locationInView:self.superview]; self.center = pt; NSLog(@"cardAnimationArray %@", cardAnimationArray); self.clipsToBounds = NO; self.animationImages = [NSArray arrayWithArray:cardAnimationArray]; [self setAnimationRepeatCount:1]; self.animationDuration= 0.3; [self startAnimating]; self.image = [UIImage imageNamed:cardMovedImageName]; } </code></pre> http://stackoverflow.com/questions/1933995/gdb-dies-because-of-nszombieenabled 0 GDB dies because of NSZombieEnabled Iskren Ivov Chernev 2009-12-19T20:07:33Z 2009-12-20T07:12:25Z <p>I was having some problems with memory (exc-bad-access) in Objective-C, XCode, for iPhone, so I searched a little bit and found about the (awesome) NSZombieEnabled. Everyone outhere is just explaining how cool this is ... but it doesn't work for me :/</p> <p>I followed the following 'tutorial': <a href="http://www.cocoadev.com/index.pl?DebuggingAutorelease" rel="nofollow">http://www.cocoadev.com/index.pl?DebuggingAutorelease</a></p> <ul> <li>I double clicked on the executable under the executable tab (left panel) and I added NSZombieEnabled=YES to the environmental variables</li> <li>I also added a bunch of other options (like malloc history, some custom ~/.gdbinit that I found on the web, etc) but this didn't solve the problem</li> </ul> <p>So basically when I launch (in debug mode) GDB sais </p> <blockquote> <p>"Undefined command: "NSZombieEnabled". Try "help".</p> </blockquote> <p>And it basically stops (in the status bar it says - error in GDB - terminating).</p> http://stackoverflow.com/questions/1933482/better-bail-behavior-in-face-of-bug-mac-os-development 0 Better bail behavior in face of bug, Mac OS development bobobobo 2009-12-19T17:04:01Z 2009-12-19T19:39:25Z <p>When I'm writing a program for the iPhone, what the apple environment does when something goes wrong (from "unrecognized selector" to anything else), the app crashes and at the console, I have this meaningless stack debug spew that looks like this:</p> <pre> 2009-12-19 11:57:37.843 ModelsProg[394:207] Stack: ( 30884955, 2431960329, 31266875, 30836342, 30688962, 10115, 2721311, 2759178, 2747272, 2729683, 2756789, 38981329, 30669696, 30665800, 2723433, 2760707, 9948, 9802 ) </pre> <p>Honestly I can't think of a more <strong>useless</strong> way to try and help a developer track the bug. It doesn't even tell you what line the problem is from, unless [394:207] is some cryptic indication of where the bug happened.</p> <p>How can I:</p> <ul> <li> Have the mac development environment tell me line number error and file occurred </li> <li> Suppress the meaningless stack chatter or change it to __actual function names__ as output, like Python's crashing bug output looks.</li> </ul> http://stackoverflow.com/questions/1932990/how-do-i-change-the-size-of-uiimageview-according-to-my-animationimages-as-they-a 0 how do i change the size of UIImageView according to my animationImages as they are bigger than initial UIImage. zerlphr 2009-12-19T14:04:03Z 2009-12-19T16:45:39Z <p>This is my code, i'm trying to drag and drop a card which will animate on touchesBegan, but the animationImages are larger than the initial card image before touches begin. </p> <p>How can i change the UIImageView to accomdate the animateImages sizes?</p> <p>cardAnimationArray is an array with 19 images xxx1.png, xxx2.png... which have various sizes.</p> <p>cardMovedImage is the last image in the series of 19 images. Thank you in advance!!</p> <pre><code>- (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event { CGPoint pt = [[touches anyObject] locationInView:self.superview]; self.center = pt; self.animationImages = [NSArray arrayWithArray:cardAnimationArray]; [cardAnimationArray release]; [self setAnimationRepeatCount:1]; self.animationDuration= 1; [self startAnimating]; self.image = [UIImage imageNamed:cardMovedImageName]; } - (void) touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event { CGPoint pt = [[touches anyObject] locationInView:self.superview]; CGRect frame = [self frame]; frame.origin.x += pt.x - self.center.x; frame.origin.y += pt.y - self.center.y; [self setFrame: frame]; } </code></pre> http://stackoverflow.com/questions/1879400/how-to-prevent-a-globally-overridden-new-operator-from-being-linked-in-from-ext 7 How to prevent a globally overridden "new" operator from being linked in from external library mprudhom 2009-12-10T08:16:31Z 2009-12-19T16:25:52Z <p>In our iPhone XCode 3.2.1 project, we're linking in 2 external static C++ libraries, libBlue.a and libGreen.a. libBlue.a globally overrides the "<em>new</em>" operator for it's own memory management. However, when we build our project, libGreen.a winds up using libBlue's <em>new</em> operator, which results in a crash (presumably because libBlue.a is making assumptions about the kinds of structures being allocated). Both libBlue.a and libGreen.a are provided by 3rd parties, so we can't change any of their source code or build options.</p> <p>When we remove libBlue.a from the project, libGreen.a doesn't have any issues. However, no amount of shuffling the linking order of the libraries seems to fix the problem, nor does any experimentation with the various linking flags. Is there some way to tell XCode to tell the linker to "have libGreen's use of the <em>new</em> operator use the standard C++ <em>new</em> operator rather than the one redefined by libBlue"?</p> http://stackoverflow.com/questions/1929346/suggestions-on-how-to-organize-core-data-visual-layout 2 Suggestions on how to organize Core Data visual layout? Kaji 2009-12-18T16:39:51Z 2009-12-19T15:32:52Z <p>Core Data is pretty amazing, and I've really enjoyed using the visual layout Xcode provides for it to organize things and get a quick sample of what data I've placed where. At times I've started to wonder if I'm making the best use of it, however, as after a while there tends to be such a mass of arrows that it becomes difficult to tell what's going where. I try to keep this to a minimum by grouping like objects together, abstract objects/parents in trees with their children, etc., but the clutter seems inevitable. What are some ways you employ to keep it optimally organized and readable?</p> http://stackoverflow.com/questions/1923321/how-do-i-install-iphone2-0-sdk-on-snow-leopard 2 How do I install iPhone2.0 SDK on snow leopard? mmattax 2009-12-17T17:30:39Z 2009-12-19T13:19:01Z <p>The snow leopard xcode only installs 3.1, 3.0, and 2.2.1. I need to install 2.0 to use as the base SDK for a particular app.</p> <p>I see the iPhoneSDK2_0.pkg in the Packages directory of the install image, but there is no option to install it...</p> http://stackoverflow.com/questions/1932521/dragging-1-of-52-cards-in-uiview-which-is-a-better-method 0 Dragging 1 of 52 cards in UIView. Which is a better method? zerlphr 2009-12-19T10:05:50Z 2009-12-19T11:21:59Z <p>Hi people! Currently I have 52 cards UIImageViews in IB UIView.</p> <p>And my objective is to drag 1 of this 52 cards into a Square, and if the the card is dropped into the Square, it will stay there. Otherwise, it will snap back it's original position.</p> <p>MY question is which is a better method?</p> <ol> <li><p>Creating a custom class NSObject and changing every card in IB into this class and using this code in the .m file. `- (void)touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event { UITouch *touch = [touches anyObject];<br> CGPoint location = [touch locationInView:self.superview];</p> <p>self.center = location; }</p></li> <li><p>Declaring 52 IBOutlets and make them respond to the same action</p> <p>i)Subsidiary question: Is there a way i do not need to declare all 52 IBOutlets? ` Thank you in advance!</p></li> </ol> http://stackoverflow.com/questions/1932595/viewforzoominginscrollview-how-to-detect-zoom-with-items-on-top-pass-touch-dow 0 viewForZoomingInScrollView - How to detect zoom with items on top (Pass touch downwords) Anthony Greco 2009-12-19T10:48:52Z 2009-12-19T10:48:52Z <p>Hello all,</p> <p>I have a viewForZoomingInScrollView with "hotspots" on top of it that allow you to click specific areas to get information on that area. The scrollview is allowing zooming of my image almost perfectly, except the small areas I have a hotspot, if I click on them, the "click" is not passed downwords, thus zoom/pinch is not detected. </p> <p>Now my hotspots work on double tap because when the image is rather small, its easy to accidentally click one, but my final issue is how do I pass the click down to my ScrollView so it can still scroll?</p> <p>Inside my touchesBegan class for my hotspot, I know I can pass it to the main class by using the following (parent is a preset variable of mine): [parent touchesBegan:touches withEvent:event];</p> <p>I can likewise, successfully call the event for my scrollView, however my pinch zoom still do not get activated.</p> <p>Please, any suggestions would be extremely appreciated.</p> <p>Anthony Greco</p> http://stackoverflow.com/questions/1932548/detect-heartrate-using-fft 0 detect heartrate using fft? Rahul Vyas 2009-12-19T10:21:30Z 2009-12-19T10:21:30Z <p>i have seen in apple's aurio touch sample that it's using fft(fast fourier transformation).could someone tell me that how do i detect heartrate in that sample app? sample code would be very helpfull....</p> http://stackoverflow.com/questions/1932368/how-to-increase-picker-view-transformed-pickerview-width 0 How to increase picker view ( transformed pickerview ) width ? Madhup 2009-12-19T08:35:48Z 2009-12-19T10:05:29Z <p>Hi all,</p> <p>I am trying to scroll the picker view horizontally and this is my code.</p> <p>in viewDidLoad I did this,</p> <pre><code> CGRect frame = horizontalPickerView.frame; frame.size.width = 50; frame.size.height = 216; frame.origin.x=90; frame.origin.y = 200; horizontalPickerView.frame = frame; horizontalPickerView.transform = CGAffineTransformMakeRotation(3.14159/2); - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view{ UILabel *lbl = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 30, 20)] autorelease]; lbl.transform = CGAffineTransformMakeRotation(-3.14159/2); lbl.text = @"hi"; return lbl; } </code></pre> <p>But the problem is I am not able to change the width of picker view more than 216.0 if I try to do this there is a black background left.</p> <p><img src="http://img709.imageshack.us/img709/6982/picture5g.png" alt="CorrectImage"> this is the correct image</p> <p>Now if I do this</p> <pre><code>CGRect frame = horizontalPickerView.frame; frame.size.width = 50; frame.size.height = 300; frame.origin.x=120; frame.origin.y = 200; horizontalPickerView.frame = frame; horizontalPickerView.transform = CGAffineTransformMakeRotation(3.14159/2); </code></pre> <p>I get this <img src="http://img46.imageshack.us/img46/2792/picture6b.png" alt="image"></p> <p>I have seen the apps like Seelibrity in which the picker has the width to fit the screen. Please help me to get out of this problem?</p> http://stackoverflow.com/questions/1932207/excbadaccess-on-very-simple-objective-c-program-snow-leopard 0 EXC_BAD_ACCESS on very simple Objective-C program (Snow Leopard) jboxer 2009-12-19T06:49:28Z 2009-12-19T06:57:26Z <p>I'm following through one of the very early examples in <a href="http://rads.stackoverflow.com/amzn/click/1430218150" rel="nofollow" title="Learning Objective-C on the Mac">Learning Objective-C on the Mac</a>. My code is almost exactly the same as the code in the book (a couple spaces and trivial parentheses may differ). It looks like this:</p> <pre><code>#import &lt;Foundation/Foundation.h&gt; BOOL areIntsDifferent (int thing1, int thing2) { if (thing1 == thing2) { return NO; } else { return YES; } } NSString * boolString (BOOL yesNo) { if (yesNo == NO) { return (@"NO"); } else { return (@"YES"); } } int main (int argc, const char * argv[]) { BOOL areTheyDifferent; areTheyDifferent = areIntsDifferent(5, 5); NSLog(@"are %d and %d different? %@", 5, 5, boolString(areTheyDifferent)); areTheyDifferent = areIntsDifferent(23, 42); NSLog(@"are %d and $d different? %@", 23, 42, boolString(areTheyDifferent)); return 0; } </code></pre> <p>When I run the code, this is what I get in the console:</p> <pre><code>[Session started at 2009-12-19 01:41:37 -0500.] GNU gdb 6.3.50-20050815 (Apple version gdb-1346) (Fri Sep 18 20:40:51 UTC 2009) Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "x86_64-apple-darwin".tty /dev/ttys001 Loading program into debugger… Program loaded. run [Switching to process 3125] Running… 2009-12-19 01:41:38.432 BOOL Party[3125:a0f] are 5 and 5 different? NO Program received signal: “EXC_BAD_ACCESS”. sharedlibrary apply-load-rules all </code></pre> <p>I'm not sure why this is happening. I do know that it has something to do with the <code>boolString</code> function, because when I comment out the call to it, the program runs fine. My gut tells me that this has something to do with some new memory management stuff in Snow Leopard (this book predates Snow Leopard by about six months). Anyone know what the problem might be?</p> http://stackoverflow.com/questions/1603300/xcode-3-2-1-and-c-string-fails 3 Xcode 3.2.1 and C++ string fails! yuval 2009-10-21T20:10:45Z 2009-12-19T06:51:08Z <p>Hi, In Xcode 3.2.1 on Mac OS X Snow Leopard, I open a project under: Command Line Tool of type C++ stdc++. I have the following simple code:</p> <pre><code>#include &lt;iostream&gt; #include &lt;string&gt; using namespace std; int main(){ string myvar; cout &lt;&lt; "Enter something: " &lt;&lt; endl; cin &gt;&gt; myvar; cout &lt;&lt; endl &lt;&lt; myvar &lt;&lt; endl; return 0; } </code></pre> <p>The program compiles fine, and prompts me to "Enter Something". When I type in something, and then press enter, I get the following error:</p> <pre><code>myproject(766) malloc: *** error for object 0x1000041c0: pointer being freed was not allocated *** set a breakpoint in malloc_error_break to debug Program received signal: “SIGABRT”. sharedlibrary apply-load-rules all (gdb) </code></pre> <p>When compiling on an earlier version of Xcode (3.1.2) on a different computer (opened the project with the 'command line utility' option, which does not exist in 3.2.1), the code runs with NO PROBLEM.</p> <p>Does anybody know what's going on? Thanks, Yuval</p> http://stackoverflow.com/questions/1931472/expected-specific-qualifier-list-before-function-and-expected-a 0 expected specific-qualifier-list before 'function' and expected '=', ',', ';', 'asm' or '__attribute__' before 'function' Justin 2009-12-19T00:29:58Z 2009-12-19T00:59:20Z <p>Hello,</p> <p>I am programming in Objective-C but I would like to write a c function to increase the performance. I have written the code below this post but the compile keeps coming back with the following error:</p> <blockquote> <p>error: expected specific-qualifier-list before 'bool'</p> <p>error: expected '=', ',', ';', 'asm' or '<strong>attribute</strong>' before 'addToBoolArray'</p> </blockquote> <p>structs.h:</p> <pre><code>typedef struct boolArray{ bool *array; int count; } boolArray; bool addToBoolArray(boolArray *bArray, bool newBool) </code></pre> <p>structs.c:</p> <pre><code>#import "structs.h" bool addToBoolArray(boolArray *bArray, bool newBool) { if(bArray-&gt;count &gt; 0){ bArray-&gt;array = realloc(bArray-&gt;array,(bArray-&gt;count+1)*sizeof(bool)); else{ bArray-&gt;array = (bool *)malloc(sizeof(bool)); } if(bArray-&gt;array == NULL) return false; bArray-&gt;array[bArray-&gt;count] = newBool; bArray-&gt;count++; return true; } </code></pre> <p>I've found many forum threads about this error but none of them seem to address my issue. Any ideas?</p> <p>Thank you </p>