active questions tagged iphone - Stack Overflow most recent 30 from stackoverflow.com 2010-02-10T01:39:36Z http://stackoverflow.com/feeds/tag/iphone http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2233824/how-to-add-commas-to-number-every-3-digits-in-objective-c 0 How to add commas to number every 3 digits in Objective C? RexOnRoids 2010-02-10T01:31:44Z 2010-02-10T01:39:08Z <p>If I have a number <code>int aNum = 2000000</code> how do I format this so that I can display it as the NSString 2,000,000?</p> http://stackoverflow.com/questions/2233628/iphone-context-how-do-i-extract-palette-information-from-an-image 0 iPhone context: How do i extract palette information from an image? timetravel0 2010-02-10T00:44:10Z 2010-02-10T01:17:55Z <p>Hi everybody: i want to take a picture and retrieve the main color analyzing its palette (i think this should be the easiest way), but i don't know really where to start.</p> http://stackoverflow.com/questions/642312/checking-if-a-uiviewcontroller-is-about-to-get-popped-from-a-navigation-stack 3 Checking if a UIViewController is about to get Popped from a navigation stack? Jasarien 2009-03-13T11:46:32Z 2010-02-10T01:15:41Z <p>Hey guys,</p> <p>I need to know when my view controller is about to get popped from a nav stack so I can perform an action.</p> <p>I can't use -viewWillDisappear, because that gets called when the view controller is moved off screen for ANY reason (like a new view controller being popped on top).</p> <p>I specifically need to know when the controller is about to be popped itself.</p> <p>Any ideas would be awesome, thanks in advance.</p> http://stackoverflow.com/questions/1100563/xcode-3-1-3-organizer-the-device-is-not-activated-please-activate-it-using-itu 1 Xcode 3.1.3 - Organizer The device is not activated. Please activate it using iTunes OscarMk 2009-07-08T21:11:58Z 2010-02-10T01:13:14Z <p>Hello,</p> <p>I recently upgraded my XCode SDK to version 3.1.3 and my iphone OS to 3.0. It is important to note that everything was working fine when i had os version 2.2.1 in my iPhone. My iPhone Touch device is not jailbroken and I have a valid provisioning profile in the organizer which is linked to my iPhone Touch however it has a yellow circle next to it. </p> <p>This is because in the organizer under devices it displays the ipod with version 3.0 (7A341) and then it Reads (in the section where the provisioning profiles should go) : </p> <p>This device is not activated. Please activate it using iTunes.</p> <p>When I go in xcode and build the application it does so just fine, and the code signing is in fact assigned to the correct provisioning profile. But whenever I try to run it in the device I get "No provisioned iPhone OS device is connected.". This is because the organizer keeps telling me to activate the device using iTunes.</p> <p>I have iTunes version 8.2 and the device is there and i can sync it just fine, however it keeps displaying that message in XCode. I have tried restoring my ipod about 10 times but I always get the same result, I have also tried powering off the iphone Touch and the computer but nothing seems to help. </p> <p>Does anyone else have this problem?. Any help will be greatly appreciated. Thank you.</p> http://stackoverflow.com/questions/2233423/opengl-es-draw-texture-into-frame-buffer-object 0 OpenGL ES draw texture into frame buffer object Dan 2010-02-09T23:51:38Z 2010-02-10T01:03:35Z <p>Is there a trick to rendering a textured quad into a frame buffer object, then displaying it on the screen?</p> <p>Draw method to render texture into FBO:</p> <pre><code>glBindFramebufferOES(GL_FRAMEBUFFER_OES, fbo); glViewport(0, 0, IMAGE_WIDTH, IMAGE_HEIGHT); // Sets up matrices and transforms for OpenGL ES glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrthof(-1.0f, 1.0f, -1.0f, 1.0f, -1.0f, 1.0f); glMatrixMode(GL_MODELVIEW); glClearColor(1.0f, 1.0f, 1.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); glBindTexture(GL_TEXTURE_2D, texture[1]); glEnableClientState(GL_VERTEX_ARRAY); glVertexPointer(2, GL_FLOAT, 0, squareVertices); glTexCoordPointer(2, GL_FLOAT, 0, squareTexture); glEnableClientState(GL_TEXTURE_COORD_ARRAY); //draw background image glDrawArrays(GL_TRIANGLE_STRIP, 0, 4); //unbing the fbo glBindFramebufferOES(GL_FRAMEBUFFER_OES, 0); </code></pre> <p>And the render method is essentially the same thing:</p> <p>-(void)render</p> <pre><code>[EAGLContext setCurrentContext:context]; // This application only creates a single default framebuffer which is already bound at this point. // This call is redundant, but needed if dealing with multiple framebuffers. glBindFramebufferOES(GL_FRAMEBUFFER_OES, defaultFramebuffer); glViewport(0, 0, backingWidth, backingHeight); // Sets up matrices and transforms for OpenGL ES glViewport(0, 0, backingWidth, backingHeight); glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrthof(-1.0f, 1.0f, -1.0f, 1.0f, -1.0f, 1.0f); glMatrixMode(GL_MODELVIEW); glClearColor(1.0f, 1.0f, 1.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); glBindTexture(GL_TEXTURE_2D, bufferTexture); //find the texture rendered into the fbo glEnableClientState(GL_VERTEX_ARRAY); glVertexPointer(2, GL_FLOAT, 0, squareVertices); glTexCoordPointer(2, GL_FLOAT, 0, squareTexture); glEnableClientState(GL_TEXTURE_COORD_ARRAY); //draw background image glDrawArrays(GL_TRIANGLE_STRIP, 0, 4); </code></pre> <p>The resulting screen is just white. It has to be a size issue between the buffer and the screen. If I replace the binded texture in the render method with texture[1] the image gets displayed. It only occurs when the binded texture is the texture attached to the fbo.</p> <p>Also if the draw method just renders a color array and no texture it works fine...</p> <p>Can someone point out why the texture will not display? Thanks in advance!</p> <p>-Dan</p> http://stackoverflow.com/questions/2233602/web-frameworks-to-develop-for-android-and-iphone 0 Web frameworks to develop for Android and iPhone? Viet 2010-02-10T00:38:54Z 2010-02-10T00:51:59Z <p>Web frameworks to develop for Android and iPhone?</p> http://stackoverflow.com/questions/2159686/why-shouldnt-a-view-controller-manage-part-of-a-window-in-cocoa-touch 1 Why shouldn't a view controller manage part of a window in Cocoa Touch? Casebash 2010-01-29T03:19:19Z 2010-02-10T00:51:12Z <p>According to the <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIViewController%5FClass/Reference/Reference.html#jumpTo_0" rel="nofollow">Apple Documentation</a>:</p> <blockquote> <p>You should not use view controllers to manage views that fill only a part of their window—that is, only part of the area defined by the application content rectangle. If you want to have an interface composed of several smaller views, embed them all in a single root view and manage that view with your view controller.</p> </blockquote> <p>Why? In particular, I have a view that contains a Table View and a label which works perfectly as far as I can tell. I really don't want to manage the UIView and UITableView with the same controller as the UITableViewController handles a lot of housekeeping and according to the <a href="http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/TableView_iPhone/CreateConfigureTableView/CreateConfigureTableView.html#//apple_ref/doc/uid/TP40007451-CH6-SW25" rel="nofollow">documentation</a>:</p> <blockquote> <p>If the view to be managed is a composite view in which a table view is one of multiple subviews, you must use a custom subclass of UIViewController to manage the table view (and other views). Do not use a UITableViewController object because this controller class sizes the table view to fill the screen between the navigation bar and the tab bar (if either are present).</p> </blockquote> http://stackoverflow.com/questions/1269946/uisearchbar-tinted-like-contacts 2 UISearchBar tinted like Contacts tewha 2009-08-13T03:54:45Z 2010-02-10T00:38:59Z <p>The <code>UISearchBar</code> in my <code>UITableView</code> header is the strong color.</p> <p>The <code>TableSearch</code> uses the more subtle code, but I'm not sure how it's doing it. I've looked at the TableSearch example code. Specifically, I don't see <code>tintColor</code> being used anywhere in this example. I don't see opacity or alpha used, either.</p> <p>How does the <code>TableSearch</code> example do this? Can anyone explain it?</p> http://stackoverflow.com/questions/2233601/cashapelayer-path-dissapears-after-animation-need-it-to-stay-in-the-same-place 0 CAShapeLayer path dissapears after animation - need it to stay in the same place KLC 2010-02-10T00:38:39Z 2010-02-10T00:38:39Z <p>Thanks to some help on StackOverflow, I am currently animating a path in CAShapeLayer to make a triangle that points from a moving sprite to another moving point on the screen.</p> <p>Once the animation completes, the triangle disappears from the screen. I am using very short durations because this code is being fired every .1 of second for each of the sprites. The result is the red triangle tracks correctly, but it rapidly flashes or isn't there entirely. When I crank up the the duration, I can the see the triangle stay longer.</p> <p>What can I do to get the triangle to stay on the screen, with it's current path (the <code>tovalue</code>) until the method is called again to animate from the spot to the next spot? I tried setting the removedOnCompletion and removeAllAnimations, but to no avail.</p> <p>Code below:</p> <pre><code>-(void)animateConnector{ //this is the code that moves the connector from it's current point to the next point //using animation vs. position or redrawing it //set the newTrianglePath newTrianglePath = CGPathCreateMutable(); CGPathMoveToPoint(newTrianglePath, nil, pointGrid.x, pointGrid.y);//start at bottom point on grid CGPathAddLineToPoint(newTrianglePath, nil, pointBlob.x, (pointBlob.y - 10.0));//define left vertice CGPathAddLineToPoint(newTrianglePath, nil, pointBlob.x, (pointBlob.y + 10.0));//define the right vertice CGPathAddLineToPoint(newTrianglePath, nil, pointGrid.x, pointGrid.y);//close the path CGPathCloseSubpath(newTrianglePath); //NSLog(@"PointBlob.y = %f", pointBlob.y); CABasicAnimation *connectorAnimation = [CABasicAnimation animationWithKeyPath:@"path"];`enter code here` connectorAnimation.duration = .007; //duration need to be less than the time it takes to fire handle timer again connectorAnimation.removedOnCompletion = NO; //trying to keep the the triangle from disappearing after the animation connectorAnimation.fromValue = (id)trianglePath; connectorAnimation.toValue = (id)newTrianglePath; [shapeLayer addAnimation:connectorAnimation forKey:@"animatePath"]; //now make the newTrianglePath the old one, so the next animation starts with the new position 2.9-KC self.trianglePath = self.newTrianglePath; } </code></pre> http://stackoverflow.com/questions/2231802/simplifying-switch-statement-objective-c 1 Simplifying switch statement (Objective-C) Emil 2010-02-09T19:19:57Z 2010-02-10T00:28:19Z <p>Y'hello.. Yep, it's me again, sorry.</p> <p>I am trying to .. um, see the code, you'll understand. If not, I'll explain later.</p> <pre><code>// When row is selected - (void)pickerView:(UIPickerView *)pickerTimer didSelectRow:(NSInteger)row inComponent:(NSInteger)component { switch (row) { case 0: NSLog(@"It obviously worked.0"); break; case 1: NSLog(@"It obviously worked.1"); break; case 2: NSLog(@"It obviously worked.2"); break; case 3: NSLog(@"It obviously worked.3"); break; case 4: NSLog(@"It obviously worked.4"); break; case 5: NSLog(@"It obviously worked.5"); break; case 6: NSLog(@"It obviously worked.6"); break; default: NSLog(@"It did kindof work.NIL"); break; } } </code></pre> <p>I guess what I want to know is, is there any way of simplifying this? Just do like,</p> <pre><code>NSLog(@"It did work! %@", row); </code></pre> <p>For the record, I tried that, and it did not work.</p> <p>Thank you. <em>I am a n00b at iPhone programming :)</em></p> http://stackoverflow.com/questions/2233440/iphone-apps-costs-and-ease-of-build 1 iPhone Apps - Costs and Ease of Build? [closed] Fathead 2010-02-09T23:55:37Z 2010-02-10T00:16:34Z <p>I hope for you guys, this question will be easy.</p> <p>What I am looking at is an App for search, which will locate your position using the gps and show certain places of interest on a map. Being completely new to this, I would not know where to start or if there was an "open source" style app that could be used if connected through a website where data is stored?</p> <p>For example - if a wine store registers on my website called "findawinestore" and they placed there location on a Google map, then uploaded the details to our directory, would an app use the data from our website, or search Google for it - or both?</p> <p>(Oh, i'm not looking at a wine store app, even though..... too late!)</p> <p>Look forward to hearing your thoughts.</p> http://stackoverflow.com/questions/2233417/whats-the-most-suitable-sound-audio-framework-for-iphone-opengl-es-games 1 What's the most suitable sound/audio framework for iPhone OpenGL-ES games? Eonil 2010-02-09T23:50:28Z 2010-02-10T00:09:36Z <p>I'm making a game for iPhone/iPod. My engine uses OpenGL-ES, and this means game requires some performance. (realtime games, not a static boardgame like games.)</p> <p>I looked at basic sound framework in iPhone, there're several frameworks,(Core Audio, Audio Toolbox, OpenAL...) but I cannot determine differences of them in detail.</p> <p>I think OpenAL will gain best performance, but it's just a guess, no foundation. And iPhone/iPod is a music player hardware, I cannot know in-depth features of iPhone/iPod. </p> <p>I'm new to all of those framework, so I have to study one of them. And now I'm choosing it.</p> <p>The features required for me is:</p> <ul> <li>Delay-less playback. Sound effect should be a realtime feedback.</li> <li>Streamed long music playback with very small memory footprint.</li> <li>Volume control per playback of sound effect.</li> <li>Mixing. Multiple difference sound effect can be played at same time. (around 4 or more)</li> <li>Other feature required for games.</li> <li>Hardware acceleration (if exists)</li> <li>Realtime filtering effect (reverb, echo, 3D, ...) if possible.</li> <li>...</li> </ul> <p>Can you recommend a framework for my game? And some explanation about each framework also be very appreciated too.</p> http://stackoverflow.com/questions/1980559/what-happens-when-back-button-is-pressed-in-navigationbar 1 What happens when back button is pressed in navigationBar lee 2009-12-30T14:52:33Z 2010-02-10T00:00:10Z <p>I wonder what is the function is called when the back button is pressed on the navigationBar. </p> <p>I want to add some functionality when the button is pressed, who knows it?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/2078507/subclass-of-uitabbarcontroller-replaced-the-tabbar-and-have-a-display-issue 1 Subclass of UITabBarController, replaced the TabBar and have a display issue marcc 2010-01-16T18:42:29Z 2010-02-09T23:50:18Z <p>I have an iPhone app which was built using a standard UITabBarController. This app was created using the standard XCode project template.</p> <p>Now, I have a requirement to change the UITabBar to look very different. The approach I decided to take was like this:</p> <p>in my AppDelegate: </p> <pre><code>for (UIView *view in tabBarController.view.subviews) { if([view isKindOfClass:[UITabBar class]]) { view.hidden = YES; break; } } </code></pre> <p>This works to make the tab bar hidden. Next, I subclassed <code>UITabBarController</code> and I add a <code>UIToolbar</code> with a few custom components. In my subclassed <code>UITabBarController</code> I have my code set up so that when one of my custom objects is selected, the code simply calls <code>[self setSelectedIndex:n]</code> to update the UI. </p> <p>So I basically have a UITabBarController but I am controlling it through a new UI.</p> <p>The problem is that my new components aren't quite as tall as the normal <code>UITabBar</code> and the UITabBarController seems to be not resizing my views automatically. I actually would expect this behavior, but I can't figure out how to change the "content frame" of a UITabBarController. Any ideas?</p> http://stackoverflow.com/questions/2233402/nsinvocationoperation-from-started-from-a-view-controller-and-the-view-controller 1 NSInvocationOperation from started from a view controller and the view controller is disposed? marcc 2010-02-09T23:46:37Z 2010-02-09T23:46:37Z <p>Suppose I'm doing some iPhone development and I have a subclass of <code>UIViewController</code>. And suppose this view controller has a <code>NSOperationQueue</code> which is created in <code>viewDidLoad</code> and released in <code>dealloc</code>. </p> <p>Now suppose at some point while this view controller is alive, it adds an <code>NSInvocationOperation</code> to the <code>NSOperationQueue</code> and the operation queue starts executing it in the background. While it's executing, the view controller is dismissed. </p> <p>What happens to the running <code>NSInvocationOperation</code>? Could it continue to run and prevent the view controller from being released?</p> <p>Example code in the view controller:</p> <pre><code>NSInvocationOperation *operationDoSomething = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(synchronousDoSomething:) object:nil]; [_operationQueue addOperation:operationDoSomething]; [operationDoSomething release]; </code></pre> <p>and then this is another function in my view controller:</p> <pre><code>- (void)synchronousDoSoemthing { [NSThread sleepForTimeInterval:1000.0]; [self finished]; } </code></pre> <p>So in the above example, by the time <code>[self finished]</code> is called, the view controller has been popped off of the navigation controller.</p> http://stackoverflow.com/questions/2233240/hiding-map-annotations-without-deleting-them 0 Hiding map annotations without deleting them. Affian 2010-02-09T23:13:57Z 2010-02-09T23:41:37Z <p>Using a MKMapView I have a pile of annoatations loaded onto it and I want to be able to filter the annotations displayed with a segmented control.</p> <p>I'm using custom annotations with a type variable so I can tell them apart from one another but I haven't been able to find a way to hide and display a subset of annotation views at will.</p> http://stackoverflow.com/questions/2092737/iphone-settings-bundle-deployment-with-cydia 0 [iPhone] Settings.bundle deployment with Cydia DanielSwe 2010-01-19T10:26:13Z 2010-02-09T23:39:19Z <p>I have created a settings.bundle and the settings are visible when I debug it on my iPhone. But when I upload it to a repository the users can not see the settings in the Settings.app.</p> <p>So how do I make the settings appear in Settings.app on jailbroken devices? Is there something I can put in the preinst-script to fix this?</p> http://stackoverflow.com/questions/2128591/implementing-add-photo-button-similar-to-the-iphone-contacts-app 1 Implementing "add photo" button similar to the iPhone contacts app Urizen 2010-01-24T20:13:59Z 2010-02-09T23:32:00Z <p>I was curious if anybody knew the process to create an <strong>"add photo"</strong> image tile similar to that in the iPhone contacts app. It seems to be on the same level as a <code>UITableViewCell</code> which is shortened (if this is the way it is done).</p> <p>I've read a suggestion dealing with Headers or custom <code>UITableViewCells</code> but nothing definitive on how it was done. Any illustrative code snippets would be most welcome.</p> <p>Thank you for any replies.</p> http://stackoverflow.com/questions/2232390/i-have-a-coredata-model-with-4-entities-multiple-table 1 I have a CoreData model with 4 entities multiple table Jonathan Ramirez 2010-02-09T20:42:44Z 2010-02-09T23:30:27Z <p>I have a CoreData model with 4 entities.</p> <p>Model screenshot -> <a href="http://img96.imageshack.us/img96/7857/screenshot20100209at182.png" rel="nofollow">http://img96.imageshack.us/img96/7857/screenshot20100209at182.png</a></p> <p><strong>State</strong></p> <p>-StateName</p> <p><strong>Location:</strong></p> <p>-locationName (attribute)</p> <p>-locationDescription</p> <p>-locationActivities (relatinship)</p> <p>-state (relationship)</p> <p><strong>LocationActivities:</strong></p> <p>-location (relationship)</p> <p>-activity (relationship)</p> <p><strong>Activities</strong></p> <p>-activityName(attribute)</p> <p>-locationsActivities (relationship)</p> <p>How can i write a query that selects all Locations that have (activity = 'Golf' OR activity = 'Swimming') AND state = 'LA'</p> http://stackoverflow.com/questions/2233233/when-to-release-retain-an-object-that-is-passed-to-a-secondary-thread 1 When to release/retain an object that is passed to a secondary Thread? OscarMk 2010-02-09T23:12:34Z 2010-02-09T23:29:20Z <p>Hello,</p> <p>I am passing an object to a secondary thread using the following code:</p> <pre><code> (void)login:(id)sender { platformMsgs_LoginRequest *loginRequest = [[[platformMsgs_LoginRequest alloc] init] autorelease]; //more code... [NSThread detachNewThreadSelector:@selector(sendLoginRequest:) toTarget:self withObject:loginRequest]; //more code... } - (void)sendLoginRequest:(platformMsgs_LoginRequest *)loginRequest { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; [loginRequest retain]; NetSuiteBinding *binding = [NetSuiteServiceSvc NetSuiteBinding]; NetSuiteBindingResponse *response = [binding loginUsingParameters:loginRequest applicationInfo:nil partnerInfo:nil]; [self performSelectorOnMainThread:@selector(loginOperationCompleted:) withObject:response waitUntilDone:NO]; [loginRequest release]; [pool drain]; } </code></pre> <p>My question is, is autorelease the right way to handle the release of this object?. Once it is passed to the secondary thread I retain it and release it when I no longer need it. </p> <p>However is it possible that the autorelease, releases the object before the secondary thread has a chance to retain it?. Do I have to create an ivar for this?, so that I can release the object in the performSelectorOnMainThread?. I no longer need the object after the login so an ivar doesn't seem like the right way to go. What is the best way to handle this?. Thank you.</p> <p>-Oscar</p> http://stackoverflow.com/questions/2233314/launch-restrict-iphone-inapp-mail-in-landscape-mode 0 launch/restrict iphone inapp mail in landscape mode Joey 2010-02-09T23:28:38Z 2010-02-09T23:28:38Z <p>Hi everyone, My app is landscape. I would like to launch the in-app email composer in landscape and restrict it as such. Can anyone advise how to do this? I created a view controller with the proper auto-rotate settings to keep my app in landscape but am unsure how to tell the MFMailComposeViewController to please launch in landscape and stay there (and stop making the keyboard rotate).</p> <p>Help?</p> http://stackoverflow.com/questions/2233292/jquery-and-mobile-browser-compatiblity 1 jquery and mobile browser compatiblity? fractalbit 2010-02-09T23:24:46Z 2010-02-09T23:28:21Z <p>I want to build a relatively simple version of my site for mobile phones but i will definately need javascript and jquery for many functions.</p> <p>Googling didn't help to find an answer. How is compatibility of jquery with popular browsers in mobile phones? I am talking for smartphones. For example the deafult browsers for these platforms</p> <p>Windows mobile 6+ Android 1.5+ iphone 3g</p> <p>and let's add opera mobile.</p> <p>Has anyone tried it?</p> http://stackoverflow.com/questions/1746235/application-failure-in-cydia-repo 0 Application Failure in Cydia Repo Kevin 2009-11-17T02:33:20Z 2010-02-09T23:26:08Z <p>Hello everyone,</p> <p>I've recently made a repo for cydia and posted my application on it. When I download my app it installs perfectly find, but when I launch it, it will suddenly close. It works fine on the simulator, but I don't know whats going wrong. Can anyone pinpoint me to where I have a mistake. BTW I deleted all the DS_Store stuff out of the repo folder.</p> <p>Thanks</p> http://stackoverflow.com/questions/2232694/delegates-vs-notifications-in-iphoneos 3 Delegates Vs. Notifications in iPhoneOS michaelfgolden 2010-02-09T21:33:52Z 2010-02-09T23:23:15Z <p>I am trying to call a method in my root view controller from a child view controller such that when I change my options they will automatically update the root view, which will in turn update several other view controllers. For the second part I have used notifications, but for this first I am trying to use a delegate because it (so I have been lead to believe) is a good programming practice. I am having trouble making it work and know that I can set up another notification easily to do the job. Should I continue trying to implement the delegate or just use a notification? </p> http://stackoverflow.com/questions/980624/iphone-apps-crash-if-debugged-on-a-jailbroken-iphone-os-2-2-1-libgcc-version 0 iPhone apps crash if debugged on a jailbroken iPhone OS 2.2.1 (libgcc version?) Ori 2009-06-11T11:38:41Z 2010-02-09T23:22:07Z <p>Hi,</p> <p>I'm new to iPhone development. I used a jailbraked iPhone (OS 2.2) for for some time with no problems. Recently I had to upgrade to OS 2.2.1 and after the update I am no longer able to debug apps on the phone. In the console I'm getting the following warning and the apps crash at launch (only when debugged) :</p> <pre><code>... warning: UUID mismatch detected with the loaded library - on disk is: /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/usr/lib/libgcc_s.1.dylib =uuid-mismatch-with-loaded-file,file="/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/usr/lib/libgcc_s.1.dylib" warning: Unable to read symbols for "/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/usr/lib/iPhoneHE.dylib" (file not found). warning: Unable to read symbols for "/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/usr/lib/libsubstrate.dylib" (file not found). warning: Unable to read symbols for "/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.1.sdk/usr/lib/HE.dylib" (file not found). warning: Unable to read symbols for "/Library/MobileSubstrate/MobileSubstrate.dylib" (file not found). Program received signal: “EXC_BAD_ACCESS”. </code></pre> <p>I searched on the web, but was not able to find clear answers. Is this a familiar problem with iPhone OS 2.2.1 on a jailbraked phone? Is there a solution to this?</p> <p>Many thanks,</p> <p>Ori</p> http://stackoverflow.com/questions/1541172/xcode-and-jailbreaked-iphone -1 Xcode and jailbreaked iPhone Lenny 2009-10-08T23:50:37Z 2010-02-09T23:18:20Z <p>Let's see what I have:</p> <ul> <li>Mac OS X Leopard 10.5.8;</li> <li>Xcode 3.1.4;</li> <li>jailbreaked iPhone 3.1 (7C144)</li> </ul> <p>For debugging I use simulator, but it's not so useful especial when you need some device futures. Now I need start debug on real device. When I try make "Device - iPhone OS 3.1" I got message "Codesign error: no certificate for identifier "iPhone Developer" was found in your keychain".</p> <p>Official way that can solved my problem pay $99 per year and get all needed certificates. This way absolutely unacceptable, because I would like make the free software. Second way that I know from my hand book "iPhone Open Application Development" by J. Zdziarski it's make toolchain from unofficial binary distributions and use console command like this: "arm-apple-darwin-gcc –o myexample myexample.m -lobjc –framework corefoundation –framework foundation –framework uikit" or create make file that build the app and then on iPhone device write in console ldid -S path-to-app that sign my app. It's not too useful if you need debug. When you change a few symbols in code and need again and again send it on device.</p> <p>Who can tell me one more way how can I use Xcode 3.1.4, and iPhone 3.1 that debug my app? I have feeling that need some hack on Xcode that it does allow me to start debug.</p> http://stackoverflow.com/questions/2228722/iphone-how-to-fire-a-button-event-in-programmatically 0 iPhone, how to fire a button event in programmatically Robin 2010-02-09T11:42:34Z 2010-02-09T23:05:57Z <p>Hi all, I want fire a button event(or maybe method) in code,the button was generate by iPhone SDK , I can not update it, so I add the action to the button, the code likes as follows:</p> <pre><code>[theButton addTarget:self action:@selector(onButtonEvent:) forControlEvents:UIControlEventAllTouchEvents]; -(void) onButtonEvent:(id)sender { AppTrace2(self, @"onButtonEvent", sender); } </code></pre> <p>and when I tap the button, the app will execute a function that was produce by iPhone sdk, also the new method 'onButtonEvent' will be executed, and then I try to add some code as follows:</p> <pre><code>[theButton sendActionsForControlEvents: UIControlEventTouchDown]; [theButton sendActionsForControlEvents: UIControlEventTouchDownRepeat]; [theButton sendActionsForControlEvents: UIControlEventTouchDragInside]; [theButton sendActionsForControlEvents: UIControlEventTouchDragOutside]; [theButton sendActionsForControlEvents: UIControlEventTouchDragEnter]; [theButton sendActionsForControlEvents: UIControlEventTouchDragExit]; [theButton sendActionsForControlEvents: UIControlEventTouchDragInside]; [theButton sendActionsForControlEvents: UIControlEventTouchDragOutside]; [theButton sendActionsForControlEvents: UIControlEventTouchUpInside]; [theButton sendActionsForControlEvents: UIControlEventTouchUpOutside]; [theButton sendActionsForControlEvents:UIControlEventTouchDown]; [theButton sendActionsForControlEvents:UIControlEventAllEvents]; </code></pre> <p>but it does not call the original functions which was produced by iphone sdk, although the new method 'onButtonEvent' also was executed when above sendActionsForControlEvents executed .... my goal is to invoke the original function ... sdk does not provide tip on this , so I have to simulate the tap event to invoke the function to executed .... </p> <p>any one can give a tip on this problem ?</p> <p>Thanks for your time!</p> <p>Regards</p> http://stackoverflow.com/questions/2233140/iphone-push-a-view-controller-onto-the-navigation-stack-when-a-button-is-click 0 Iphone -- push a view controller onto the navigation stack when a button is clicked in a UITableViewCell William Jockusch 2010-02-09T22:53:34Z 2010-02-09T22:58:54Z <p>When a button is pushed in one of my app's table view cells, I need to push a certain view controller onto the navigation stack.</p> <p>This could be done by using an instance of NSNotification to inform the table view's controller of the button press. But that would be awfully heavyweight, especially since selections in a tab bar in the app could cause the table view to appear or disappear, creating additional overhead as the various table views register and unregister themselves whenever they are tabbed onto or off of the screen.</p> <p>Can anyone think of a better solution?</p> http://stackoverflow.com/questions/2230260/dequeuereusablecellwithidentifier-after-resolving-memoryleaks 0 dequeueReusableCellWithIdentifier after resolving memoryleaks mongeta 2010-02-09T15:41:33Z 2010-02-09T22:53:31Z <p>Hello,</p> <p>I found a memoryleak using instruments in one of my TableView, exactly at the line:</p> <pre><code>[[NSBundle mainBundle] loadNibNamed:@"ShopListCell" owner:self options:NULL]; </code></pre> <p>The Identifier from the nib ShopListCell wasn't correct with the CellIdentifier.</p> <p>Now, I don't have memory-leaks, but my UITableViewCells have their own-life :-)</p> <p>I'm using a custom UITableViewCell, and I show some image and update some labels from a NSFetchedResultsController.</p> <p>When the user clicks in one row, I update the model, so the cell has always the real data to show, but, instead of showing the real data, it shows some other cell.</p> <p>I suspect this is because I'm reusing cells, but I make all the modifications to the cell before returning it, so I expect to show always the correct data.</p> <p>This was perfect before fixing the memory-leak, I was using always a new cell, now I'm reusing them but with lots of problems.</p> <p>The [cell setNeedsDisplay]; before returning the cell has no effect.</p> <p>Here is some code:</p> <pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"ShopListCell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease]; [[NSBundle mainBundle] loadNibNamed:@"ShopListCell" owner:self options:NULL]; cell = nibLoadCell; cell.backgroundColor = [UIColor clearColor]; } // Set up the cell... Ingredient *ingredient = (Ingredient *)[fetchedResultsController objectAtIndexPath:indexPath]; NSLog(@"Section %d Row %d ingredient: %@", indexPath.section, indexPath.row,ingredient.name); // just to be sure it fetchs the correct data, and it does if([ingredient.isInListDone intValue] == 0) { cell.accessoryType = UITableViewCellAccessoryNone; [cellStateButton setSelected:NO]; cellImageInList = nil; } else { cell.accessoryType = UITableViewCellAccessoryCheckmark; [cellStateButton setSelected:YES]; cellImageInList.image = [UIImage imageNamed:@"underlined2.png"]; } cellLabelName.text = [ingredient name]; [cell setNeedsDisplay]; // this line has NO effect return cell; } </code></pre> <p>Also I've put a NSLog and it fetches the correct data at correct section and row ...</p> <p>thanks,</p> <p>r.</p> http://stackoverflow.com/questions/2228913/iphone-deb-app-installation-problem 0 iPhone .deb App installation Problem raziiq 2010-02-09T12:21:05Z 2010-02-09T22:48:34Z <p>Hi there.</p> <p>I am into a very strange problem. I have developed an app for myself, which has following three files</p> <ul> <li>MyApp.app</li> <li>MyAppDaemon.app</li> <li>LaunchDaemon.plist</li> </ul> <p>When i copy each file into specific folder using ssh , my app works perfect.</p> <ul> <li>MyApp.app into /Applications</li> <li>MyAppDaemon.app into /private/var/mobile/</li> <li>LaunchDaemon.plist into /System/Library/LaunchDaemons/</li> </ul> <p>App works great if i ssh using cyberduck and puts each file in above specified folders.</p> <p>Now the problem is when i try to pack the files in .deb file and then transfer to iPhone and then using Terminal i install it [dpkg -i MyApp.deb] the files get copied fine in the folders i specified earlier but my app doesnt work. I have checked all the permissions, still not working.</p> <p>Its kinda strange, everything is done in the same way as i do using ssh but in case of .deb file its not working, however it works great if i copy the files individually</p> <p>Any Advice on this?? </p>