Lounges
|
Registered User
|
I build computer programs...
|
|
Oct 27 |
answered | iPhone: In landscape-only, after first addSubview, UITableViewController doesn’t rotate properly |
|
Oct 26 |
comment |
How to copy items from Documents directory to .app directory in iPhone App? Its 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. |
|
Oct 14 |
awarded | ● Civic Duty |
|
Oct 9 |
awarded | ● Self-Learner |
|
Oct 8 |
comment |
Cocoa-Touch: memory management Either that or tack the autorelease on as part of the alloc/init |
|
Sep 18 |
comment |
How big is an Objective-C iPhone app vs. a MonoTouch app? Not 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. |
|
Sep 16 |
awarded | ● Popular Question |
|
Sep 16 |
awarded | ● Yearling |
|
Sep 15 |
accepted | How to customize the XCode toolbar? |
|
Sep 14 |
answered | How to customize the XCode toolbar? |
|
Sep 11 |
comment |
iPhone High Scores Framework? As 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. |
|
Sep 9 |
accepted | If I override UIAlertView (to show the progress bar, no dismiss), will it be rejected? |
|
Sep 3 |
answered | What’s the point of NSAssert, actually? |
|
Aug 19 |
comment |
how do i make this not leak? (iphone sdk) Read 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. |
|
Aug 14 |
comment |
View not completely covering the entire screen FYI this was likely caused by the simulated metrics you can adjust in IB. They actually resize the view when you adjust them. |
|
Aug 13 |
answered | Syncing a mobile (iPhone) app with web app |
|
Aug 11 |
comment |
Why does this code from iPhone Developer’s Cookbook work? Releasing 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. |
|
Aug 11 |
answered | Reccomended thread layer to use for iPhone development? |
|
Aug 7 |
answered | Forming Communication Between Server and an iPhone application. |
|
Aug 5 |
comment |
Making An Emoji Enabeling App He links to three different examples of how to implement it? What more do you really want? |
|
Aug 4 |
comment |
How to implement delegation the right way? You do not have to check for nil in objective-c. It's legal to send a message to a nil object. |
|
Aug 4 |
answered | Making An Emoji Enabeling App |
|
Aug 4 |
comment |
If I override UIAlertView (to show the progress bar, no dismiss), will it be rejected? Correct... 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. |
|
Aug 3 |
answered | If I override UIAlertView (to show the progress bar, no dismiss), will it be rejected? |
|
Aug 1 |
comment |
Why initialize objects that will be properties in a roundabout way? Right... 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. |
|
Aug 1 |
answered | Why initialize objects that will be properties in a roundabout way? |
|
Jul 31 |
comment |
How to make UITabBarController load view controllers lazily? Releasing 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. |
|
Jul 29 |
answered | How do I use AsyncSocket in a worker thread instead of main Thread? |
|
Jul 29 |
answered | How to make UITabBarController load view controllers lazily? |
|
Jul 28 |
answered | Hover Over State for UIButton on iPhone |
|
Jul 21 |
answered | Cocoa NSNumberFormatterCurrencyStyle without “$” return zero |
|
Jul 17 |
answered | XCode not finding statically linked library |
|
Jul 17 |
answered | Is there a better way to write this working, but extremely ugly, code? |
|
Jul 16 |
answered | how do i store audio files in sqlite3 database and play them in iphone? |
|
Jul 14 |
answered | What is the basic difference between NSTimer, NSTask, NSThread and NSRunloop ? |
|
Jul 14 |
comment |
What is the basic difference between NSTimer, NSTask, NSThread and NSRunloop ? I think you are both wrong. If you look at the boilerplate main.m file, this is where the NSAutoreleasePool is created and managed. There is NO correlation between a runloop and an autoreleasepool near as i can tell. |
|
Jul 13 |
answered | Iphone, Cocos2d |
|
Jul 7 |
comment |
Objective-C / Cocoa equivilant of C# ManualResetEvent Reading up on the doc's this appears to do exactly what I needed. Thanks! |
|
Jul 7 |
asked | Objective-C / Cocoa equivilant of C# ManualResetEvent |
|
Jul 1 |
answered | Default.png shows in simulator but not on real device iphone? |
|
Jun 26 |
comment |
Core Data vs Sqlite and performance… Great info... thanks |
|
Jun 25 |
asked | Core Data vs Sqlite and performance… |
|
Jun 23 |
answered | Loop through similarly-named Controls |
|
Jun 20 |
awarded | ● Popular Question |
|
Jun 19 |
answered | Best (Any) way blend tableview section header onto top of a grouped tableview |
|
Jun 16 |
comment |
Convert NSString to NSDictionary This worked great. Thank you. |
|
Jun 16 |
comment |
IPhone App Signing: A valid signing identity matching this profile could not be found in your keychain I just spent an hour with this exact same issue helping a friend. Finally we just gave up with the thought of filing some kind of issue with the ADC website. Sounds like they screwed something up. |
|
Jun 15 |
comment |
Convert NSString to NSDictionary I typed this up just as a clear example of the string i am trying to parse. Truth be told the "Dictionary String" is coming from a 3.0 API and not my code. I thought there might be a simple way to parse it. |
|
Jun 15 |
asked | Convert NSString to NSDictionary |
|
Jun 15 |
answered | How do I show details view in iPhone App using Sqlite |
