User Lounges - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T16:18:22Zhttp://stackoverflow.com/feeds/user/8918http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1632117/iphone-in-landscape-only-after-first-addsubview-uitableviewcontroller-doesnt/1632913#16329130Answer by Lounges for iPhone: In landscape-only, after first addSubview, UITableViewController doesn't rotate properlyLounges2009-10-27T18:53:20Z2009-10-27T18:53:20Z<p>You can use the UIApplication object to force a particular device orientation.</p>
<pre><code>[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait animated:NO];
</code></pre>
http://stackoverflow.com/questions/470066/nested-uiscrollview-does-not-paint1Nested UIScrollView does not paintLounges2009-01-22T17:27:18Z2009-10-11T09:28:48Z
<p>I am building an application which allows the user to view and edit data on a daily basis. To accomplish this i have created a view in Interface builder which contains all of the daily data, and i "tile" this view within an appropriately sized UIScrollView to allow the user to swipe between the days. The view contains two UITextFields, a couple UILabels, and a UITextView. At any given time i have five instances of this view which i re-position around and update the data for the appropriate position.</p>
<p>Everything works great with the exception of the UITextView. The UITextView does not display its Text property until the user has interacted with it (I'm guessing this triggers a redraw).</p>
<p>Is there an easy way to get the UITextView to "paint" its content when its not on screen (but still added as a subview to another view)?</p>
http://stackoverflow.com/questions/189952/how-long-does-it-take-to-get-an-app-approved-for-the-appstore12How long does it take to get an app approved for the AppStore?Lounges2008-10-10T02:42:40Z2009-10-09T20:05:18Z
<p>I'm looking for a general idea of how long people are sitting in the queue once they have submitted.</p>
<p>Actual times from people who have submitted and been approved. I understand its subjective and depends on the app i'm just looking for some real world examples.</p>
http://stackoverflow.com/questions/335965/how-do-i-launch-my-settings-bundle-from-my-application2How do I launch my settings bundle from my application?Lounges2008-12-03T01:12:15Z2009-10-01T07:01:54Z
<p>I am working on adding in a settings bundle for my application as a cheap way of getting a GUI on my preferences. Is it possible to launch this from a button in my application or will my users always have to access it manually via the built in settings application?</p>
http://stackoverflow.com/questions/1415823/how-to-customize-the-xcode-toolbar/1423259#14232591Answer by Lounges for How to customize the XCode toolbar?Lounges2009-09-14T18:47:39Z2009-09-14T18:47:39Z<p>You should have those buttons by default in the little bar above the text editor when running in debug mode. That being said i dont think you can customize that toolbar.</p>
http://stackoverflow.com/questions/1375786/whats-the-point-of-nsassert-actually/1375860#13758601Answer by Lounges for What's the point of NSAssert, actually?Lounges2009-09-03T20:48:21Z2009-09-03T20:48:21Z<p>Assertions are commonly used to enforce the intended use of a particular method or piece of logic. Let's say you were writing a method which calculates the sum of two greater than zero integers. In order to make sure the method was always used as intended you would probably put an assert which tests that condition.</p>
<p>Short answer: They enforce that your code is used only as intended.</p>
http://stackoverflow.com/questions/389825/dismiss-iphone-keyboard0Dismiss iphone keyboardLounges2008-12-23T19:25:43Z2009-08-23T12:29:59Z
<p>I am trying to recreate something similar to the popup keyboard used in safari.</p>
<p><img src="https://dl.getdropbox.com/u/22784/keyboardToolbar.png" alt="alt text" /></p>
<p>I am able to visually reproduce it by placeing a toolbar over my view and the appropriate buttons, however i cant figure out any way to dismiss the keyboard once the user has touched the done button.</p>
http://stackoverflow.com/questions/1264278/syncing-a-mobile-iphone-app-with-web-app/1274612#12746122Answer by Lounges for Syncing a mobile (iPhone) app with web appLounges2009-08-13T21:15:00Z2009-08-13T21:15:00Z<p>Just replicate the schema in both places and toss a timestamp in each row on every table. Then have the client send up its newest timestamp and have the server return rows newer than it.</p>
<p>Easiest way...</p>
http://stackoverflow.com/questions/1261703/reccomended-thread-layer-to-use-for-iphone-development/1262181#12621810Answer by Lounges for Reccomended thread layer to use for iPhone development?Lounges2009-08-11T18:36:53Z2009-08-11T18:36:53Z<p>Yes there is an NSCondition object, and it will probably do exactly what you want for the CoreLocation scenario you mentioned.</p>
http://stackoverflow.com/questions/1228941/forming-communication-between-server-and-an-iphone-application/1245913#12459130Answer by Lounges for Forming Communication Between Server and an iPhone application.Lounges2009-08-07T17:09:52Z2009-08-07T17:09:52Z<p>If you only need to display one value then you could do something very simple like:</p>
<pre><code>[myLabel setText:[NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.mywebsite.com/PageThatReturnsWhatYouWant"]]];
</code></pre>
http://stackoverflow.com/questions/294878/whats-the-best-workflow-for-adding-a-new-device-to-an-adhoc-provision2Whats the best workflow for adding a new device to an adhoc provision?Lounges2008-11-17T04:18:17Z2009-08-05T20:14:38Z
<p>So we all need to deploy our applications to real iPhones for testing purposes. I'm sure you much like me have found a group of sucke^H^H^H^H^H testers to help you out with this process. Whenever you want to send a build out to a new person this requires adding the new device id to your ad hoc provision. This part is fairly painless. The trouble starts when trying to get Xcode to use the new provision file.</p>
<p>Whats the best way to get Xcode to pickup and use the new provision first time? Ideally I would like to do this <em>without</em> changing the .xcodeproj file.</p>
http://stackoverflow.com/questions/1225514/making-an-emoji-enabeling-app/1228059#12280590Answer by Lounges for Making An Emoji Enabeling AppLounges2009-08-04T15:09:25Z2009-08-04T15:09:25Z<p><a href="http://arstechnica.com/apple/news/2009/02/freemoji-access-emoji-for-free.ars" rel="nofollow">http://arstechnica.com/apple/news/2009/02/freemoji-access-emoji-for-free.ars</a></p>
<p>Not a very tough google search actually...</p>
http://stackoverflow.com/questions/1223893/if-i-override-uialertview-to-show-the-progress-bar-no-dismiss-will-it-be-reje/1225143#12251431Answer by Lounges for If I override UIAlertView (to show the progress bar, no dismiss), will it be rejected?Lounges2009-08-03T23:44:22Z2009-08-03T23:44:22Z<p>I dont believe they will. I added a couple of text boxes and had no problem with multiple submissions.</p>
http://stackoverflow.com/questions/1215070/why-initialize-objects-that-will-be-properties-in-a-roundabout-way/1215455#12154550Answer by Lounges for Why initialize objects that will be properties in a roundabout way?Lounges2009-08-01T00:20:36Z2009-08-01T00:20:36Z<p>Depending on how you defined your property there you have a memory leak. Pretty much any time you see an alloc/init combo you are getting back an object with a reference count of one. Assuming your property is defined as retain (which it probably should be) then setting the property will increment the reference count to two.</p>
<p>If you really want to keep it all on one line go with something like this:</p>
<pre><code>self.navigationController = [[[UINavigationController alloc] initWithRootViewController:rootViewController] autorelease];
</code></pre>
<p>Although even that is recommended against as autoreleasing objects can cause them to be around for longer than needed.</p>
http://stackoverflow.com/questions/1198821/how-do-i-use-asyncsocket-in-a-worker-thread-instead-of-main-thread/1202077#12020770Answer by Lounges for How do I use AsyncSocket in a worker thread instead of main Thread?Lounges2009-07-29T18:15:10Z2009-07-29T18:15:10Z<p>There is a very simple asynchronous socket pattern that can be created using the NSStream object. Take a look at the WiTap sample on the iphone developer site for an example of how to implement it. </p>
<p>If implemented as in the WiTap example you probably wont have any need for a background thread. Should you still find a need for a background thread keep in mind you will probably have to manually process the runloop for that thread in order to keep your socket's operating properly. Take a look at the NSRunloop documentation for more information on that.</p>
http://stackoverflow.com/questions/1197130/how-to-make-uitabbarcontroller-load-view-controllers-lazily/1197570#11975702Answer by Lounges for How to make UITabBarController load view controllers lazily?Lounges2009-07-29T01:00:16Z2009-07-29T01:00:16Z<p>What are you trying to load lazily?</p>
<p>This is a pretty standard UITabBarController implementation. I have one very similar to it in an application I am writing. In my code the viewDidLoad (the method called after a controller has loaded its associated views into memory) is not called until the tab is touched.</p>
<p>I do believe the way you have coded (aside from all of the autoreleased objects) is the preferred method of creating this kind of UI.</p>
http://stackoverflow.com/questions/1195342/hover-over-state-for-uibutton-on-iphone/1195408#11954080Answer by Lounges for Hover Over State for UIButton on iPhoneLounges2009-07-28T16:59:41Z2009-07-28T16:59:41Z<p>Take a look at the UIControlEvents enumeration. This is all of the events you can catch for a particular view.</p>
<p>If i had to guess I would say you could probably replicate this functionality using some combination of TouchDown along with the TouchDrag series. Use TouchUp to catch the which key was touched.</p>
http://stackoverflow.com/questions/1156347/cocoa-nsnumberformattercurrencystyle-without-return-zero/1157196#11571960Answer by Lounges for Cocoa NSNumberFormatterCurrencyStyle without "$" return zeroLounges2009-07-21T03:43:59Z2009-07-21T03:43:59Z<p>I ran into a similar problem. I ended up scrapping the NSNumberFormatter for parsing and switched over to RegexKit Lite with much better results.</p>
<p>Grab a copy here: <a href="http://regexkit.sourceforge.net/" rel="nofollow">RegexKit Lite</a></p>
<p>Then go here <a href="http://regexlib.com/" rel="nofollow">http://regexlib.com/</a> and find the regex that works best for you.</p>
http://stackoverflow.com/questions/1139595/xcode-not-finding-statically-linked-library/1141036#11410360Answer by Lounges for XCode not finding statically linked libraryLounges2009-07-17T00:58:37Z2009-07-17T00:58:37Z<p>Check these things...</p>
<p>1- In the target you want to link the lib... Right click -> Get Info -> General Tab, and make sure that the lib is listed as a direct dependency.</p>
<p>2- Select the .xcodeproj in your groups and files window and make sure that you have the library product (should end in .a) checked.</p>
http://stackoverflow.com/questions/1140270/is-there-a-better-way-to-write-this-working-but-extremely-ugly-code/1141028#11410282Answer by Lounges for Is there a better way to write this working, but extremely ugly, code?Lounges2009-07-17T00:51:43Z2009-07-17T00:51:43Z<p>Why not just put the reload data call in the viewDidAppear method of the SavedViewController class?</p>
http://stackoverflow.com/questions/1056429/how-do-i-store-audio-files-in-sqlite3-database-and-play-them-in-iphone/1139097#11390971Answer by Lounges for how do i store audio files in sqlite3 database and play them in iphone?Lounges2009-07-16T17:32:46Z2009-07-16T17:32:46Z<p>In general it's best to not store binary files in any database. You are better off writing that file to the disk as a file and then storing the path in the database.</p>
http://stackoverflow.com/questions/1124207/what-is-the-basic-difference-between-nstimer-nstask-nsthread-and-nsrunloop/1127044#11270440Answer by Lounges for What is the basic difference between NSTimer, NSTask, NSThread and NSRunloop ?Lounges2009-07-14T18:08:46Z2009-07-14T18:08:46Z<p>The other answers do a pretty good job of summing up timers, tasks, and threads. I wanted to comment a bit more about the NSRunloop as I think most of the other answers still leave some confusion here. From the NSRunloop documentation:</p>
<blockquote>
<p>An NSRunLoop object processes input
for sources such as mouse and keyboard
events from the window system, NSPort
objects, and NSConnection objects. An
NSRunLoop object also processes
NSTimer events.</p>
</blockquote>
<p>also</p>
<blockquote>
<p>In general, your application does not
need to either create or explicitly
manage NSRunLoop objects. Each
NSThread object, including the
application’s main thread, has an
NSRunLoop object automatically created
for it as needed. If you need to
access the current thread’s run loop,
you do so with the class method
currentRunLoop.</p>
</blockquote>
<p>Think of the NSRunloop as the main event processing and dispatching loop for a particular thread. It reads from the input devices, services any objects that need to be serviced, and dispatches the data appropriately.</p>
http://stackoverflow.com/questions/1120585/iphone-cocos2d/1120639#11206390Answer by Lounges for Iphone, Cocos2dLounges2009-07-13T16:40:24Z2009-07-13T16:40:24Z<p>As far as i know there are no template projects. It's however very simple to get cocos up and running with XCode. Here's a great walkthrough <a href="http://monoclestudios.com/cocos2d%5Fwhitepaper.html" rel="nofollow">link</a>.</p>
http://stackoverflow.com/questions/1095218/objective-c-cocoa-equivilant-of-c-manualresetevent2Objective-C / Cocoa equivilant of C# ManualResetEventLounges2009-07-07T22:33:17Z2009-07-07T23:18:47Z
<p>Is there an equivalent of the .NET ManualResetEvent class available for use in Objective-C / Cocoa?</p>
http://stackoverflow.com/questions/1067998/default-png-shows-in-simulator-but-not-on-real-device-iphone/1071316#10713160Answer by Lounges for Default.png shows in simulator but not on real device iphone?Lounges2009-07-01T20:47:19Z2009-07-01T20:47:19Z<p>Select your Default.png in the groups and files window and make sure in the file listing above the editor window that the checkbox on the far right is checked. Without this the file will not be copied to the application bundle after compilation is finished.</p>
http://stackoverflow.com/questions/1045238/core-data-vs-sqlite-and-performance4Core Data vs Sqlite and performance...Lounges2009-06-25T17:35:20Z2009-06-25T18:41:46Z
<p>I am wondering if anyone has any real world numbers on performance differences between an old sqlite application which has been converted to Core Data in the 3.0 SDK. </p>
<p>I suspect that under the hood Core Data is just using sqlite anyways and that it add's a bit of overhead for the cost of convenience, but i thought i would ask anyways.</p>
http://stackoverflow.com/questions/1033674/loop-through-similarly-named-controls/1033853#10338533Answer by Lounges for Loop through similarly-named ControlsLounges2009-06-23T16:57:31Z2009-06-23T16:57:31Z<p>You could put a tag on each view and use a for loop with the following method:</p>
<pre><code>- (id)viewWithTag:(NSInteger)aTag
</code></pre>
http://stackoverflow.com/questions/1016102/best-any-way-blend-tableview-section-header-onto-top-of-a-grouped-tableview/1020143#10201430Answer by Lounges for Best (Any) way blend tableview section header onto top of a grouped tableviewLounges2009-06-19T21:37:41Z2009-06-19T21:37:41Z<p>Take a look at the tutorial here:
<a href="http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html" rel="nofollow">cocoa with love</a> basically what you need is 3 different images. One for the top row, one for the bottom, and a 3rd for the middle rows.</p>
http://stackoverflow.com/questions/998554/convert-nsstring-to-nsdictionary1Convert NSString to NSDictionaryLounges2009-06-15T21:43:23Z2009-06-15T22:09:43Z
<p>Is there a way to get an <code>NSDictionary</code> back from the string created via its <code>description</code> method?</p>
<p>Given this code:</p>
<pre><code>NSDictionary *dictionary = [NSDictionary dictionaryWithObjects:[NSArray arrayWithObjects:@"value 1", @"value 2", nil] forKeys:[NSArray arrayWithObjects:@"key 1", @"key 2", nil]];
NSString *dictionaryString = [dictionary description];
NSLog(dictionaryString);
</code></pre>
<p>Which makes this output:</p>
<pre><code>{
"key 1" = "value 1";
"key 2" = "value 2";
}
</code></pre>
<p>Is there an easy way to go back from the string to an NSDictionary?</p>
http://stackoverflow.com/questions/994810/how-do-i-show-details-view-in-iphone-app-using-sqlite/997411#9974111Answer by Lounges for How do I show details view in iPhone App using SqliteLounges2009-06-15T17:47:23Z2009-06-15T17:47:23Z<p>A couple of things going on here...</p>
<p>1- You are not selecting the primary key back from your sql query. You need to change it to something like "SELECT pk, title...." in order to retrieve that.</p>
<p>2- You are only storing the title back in your makes. Ideally you want to create some data structure (probably a class) which you store in your array so you have access to the PK later on.</p>
<p>3- You need to implement the didSelectRowAtIndexPath method on the UITableView to determine which row was touched in the tableview.</p>
<p>Once you have these things worked out... What you want to do is push a configured (ie: you've told it which make) ModelTableViewController onto your navigation controller. </p>
<p>You should probably take a look at the Elements sample on the developer site. It's a very good example of using SQLite to populate a UITableView.</p>
http://stackoverflow.com/questions/1627196/how-to-copy-items-from-documents-directory-to-app-directory-in-iphone-app/1627242#1627242Comment by Lounges on How to copy items from Documents directory to .app directory in iPhone App?Lounges2009-10-26T21:36:40Z2009-10-26T21:36:40ZIts pretty straightforward to move a file from the documents directory to the application directory. However once you do this you effectively BREAK the digital signature which will prevent the application from ever running again.
The purpose of the digital signature is to verify that the .app bundle has not been tampered with.http://stackoverflow.com/questions/1539442/cocoa-touch-memory-managementComment by Lounges on Cocoa-Touch: memory managementLounges2009-10-08T18:41:18Z2009-10-08T18:41:18ZEither that or tack the autorelease on as part of the alloc/inithttp://stackoverflow.com/questions/1444777/how-big-is-an-objective-c-iphone-app-vs-a-monotouch-app/1446095#1446095Comment by Lounges on How big is an Objective-C iPhone app vs. a MonoTouch app?Lounges2009-09-18T18:33:35Z2009-09-18T18:33:35ZNot correct Zoran. The zipped executable size is NOT what the appstore lists for size. One of our applications was under 10mb when zipped and uploaded, however it now shows as 14.7 in the store. This unfortunately puts us over the limit for 3g downloads.http://stackoverflow.com/questions/367198/iphone-high-scores-framework/367553#367553Comment by Lounges on iPhone High Scores Framework?Lounges2009-09-11T18:21:23Z2009-09-11T18:21:23ZAs an update to this very old post. Onyx has been canned, but there are SEVERAL other's which are filling this role. Honestly i think the jury is still out on which service is going to end up being the winnar. Who knows maybe we'll have enough of a community to support a couple of them.http://stackoverflow.com/questions/1301801/how-do-i-make-this-not-leak-iphone-sdkComment by Lounges on how do i make this not leak? (iphone sdk)Lounges2009-08-19T18:57:57Z2009-08-19T18:57:57ZRead up on the autorelease method and auto release pools. They are specifically designed to handle this problem. Additionally if you use the class method stringWithFormat it will return an autoreleased version of NSString.http://stackoverflow.com/questions/1275908/view-not-completely-covering-the-entire-screen/1277905#1277905Comment by Lounges on View not completely covering the entire screenLounges2009-08-14T18:22:55Z2009-08-14T18:22:55ZFYI this was likely caused by the simulated metrics you can adjust in IB. They actually resize the view when you adjust them.http://stackoverflow.com/questions/1250258/why-does-this-code-from-iphone-developers-cookbook-work/1250282#1250282Comment by Lounges on Why does this code from iPhone Developer's Cookbook work?Lounges2009-08-11T18:57:47Z2009-08-11T18:57:47ZReleasing an object does not set the pointer to nil. Keep in mind that pointers effectively are integers who's value is a memory address. This in a way gives you two variables, the one on the stack which stores the memory address, and the one which is on the heap (the actual object instance). When you release an object you free the one on the heap, but nothing changes on the variable on the stack. This is why most of the time when you see a release, you also see a line setting the value to nil as well.http://stackoverflow.com/questions/1225514/making-an-emoji-enabeling-app/1228059#1228059Comment by Lounges on Making An Emoji Enabeling AppLounges2009-08-05T16:31:03Z2009-08-05T16:31:03ZHe links to three different examples of how to implement it? What more do you really want?http://stackoverflow.com/questions/1223171/how-to-implement-delegation-the-right-wayComment by Lounges on How to implement delegation the right way?Lounges2009-08-04T16:37:52Z2009-08-04T16:37:52ZYou do not have to check for nil in objective-c. It's legal to send a message to a nil object.http://stackoverflow.com/questions/1223893/if-i-override-uialertview-to-show-the-progress-bar-no-dismiss-will-it-be-reje/1225143#1225143Comment by Lounges on If I override UIAlertView (to show the progress bar, no dismiss), will it be rejected?Lounges2009-08-04T06:30:17Z2009-08-04T06:30:17ZCorrect... I added them to the UIAlertView. I wanted to build a prompt similar to the one used for entering the iTunes account on the phone. It uses a UIAlertView with two textboxes allowing the user to enter their info.http://stackoverflow.com/questions/1215070/why-initialize-objects-that-will-be-properties-in-a-roundabout-way/1215455#1215455Comment by Lounges on Why initialize objects that will be properties in a roundabout way?Lounges2009-08-01T19:09:03Z2009-08-01T19:09:03ZRight... autorelease simply add's a reference to the object in the current autorelease pool. That does cause it to stick around longer (not in this situation) because you must wait for the pool to be drained to actually free the object. In this situation (since the object is being retained it doesnt matter, however its not a good habit to get in to autorelease objects in this fashion.
http://stackoverflow.com/questions/1197130/how-to-make-uitabbarcontroller-load-view-controllers-lazily/1197570#1197570Comment by Lounges on How to make UITabBarController load view controllers lazily?Lounges2009-07-31T23:18:50Z2009-07-31T23:18:50ZReleasing an object frees the memory immediately, whereas an autoreleased object has to wait for the pool to drain. On a desktop computer this might not be an issue, but in the world of the iPhone memory is a limited commodity.
One of the WWDC '09 video's on memory managment specifically recommends against using autorelease in situations like this where there is no reason other than code shorthand.http://stackoverflow.com/questions/1124207/what-is-the-basic-difference-between-nstimer-nstask-nsthread-and-nsrunloop/1124430#1124430Comment by Lounges on What is the basic difference between NSTimer, NSTask, NSThread and NSRunloop ?Lounges2009-07-14T18:02:26Z2009-07-14T18:02:26ZI think you are both wrong. If you look at the boilerplate main.m file, <i>this</i> is where the NSAutoreleasePool is created and managed. There is NO correlation between a runloop and an autoreleasepool near as i can tell.http://stackoverflow.com/questions/1095218/objective-c-cocoa-equivilant-of-c-manualresetevent/1095227#1095227Comment by Lounges on Objective-C / Cocoa equivilant of C# ManualResetEventLounges2009-07-07T23:19:00Z2009-07-07T23:19:00ZReading up on the doc's this appears to do exactly what I needed. Thanks!http://stackoverflow.com/questions/1045238/core-data-vs-sqlite-and-performance/1045560#1045560Comment by Lounges on Core Data vs Sqlite and performance...Lounges2009-06-26T18:44:06Z2009-06-26T18:44:06ZGreat info... thanks