User wisequark - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T14:14:43Zhttp://stackoverflow.com/feeds/user/33159http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/289578/memory-usage-on-convenience-method-vs-init-method/290816#2908163Answer by wisequark for Memory Usage on convenience method vs init methodwisequark2008-11-14T17:40:21Z2009-07-16T17:42:46Z<p>Your autoreleased objects created by the convenience methods will not be released until the containing autorelease pool is drained. It is advisable to wrap memory intensive operations inside of an <code>NSAutoreleasePool</code> block if you will be making heavy use of them.</p>
http://stackoverflow.com/questions/559482/why-doesnt-an-iphone-apps-main-function-ever-get-a-chance-to-finish/559958#5599581Answer by wisequark for Why doesn't an iPhone app's main() function ever get a chance to finish?wisequark2009-02-18T05:31:11Z2009-02-18T05:31:11Z<p>After calling the <code>UIApplicationMain</code> function your application launches (establishing a runloop, etc) and all work should then be done outside the context of main (if you need it to run in main, do it before that point). When quitting an application it is generally more efficient to allow the OS to do memory cleanup.</p>
http://stackoverflow.com/questions/559756/interface-builder-vs-whats-displayed-on-iphone/559945#5599451Answer by wisequark for Interface Builder vs. What's Displayed on iPhonewisequark2009-02-18T05:24:07Z2009-02-18T05:24:07Z<p>Hi Keith,</p>
<p>Can you verify that the PNG files are saved with a pixel density of 72dpi? Also, what type of UI element are you using? (UIButton, UIImageView, etc). It would help if you could post a sample image.</p>
http://stackoverflow.com/questions/552025/is-objective-c-2-0-exception-handling-supported-on-non-mac-os-x-platforms/552496#5524961Answer by wisequark for Is Objective-C 2.0 exception handling supported on non Mac OS X platforms?wisequark2009-02-16T07:31:47Z2009-02-16T07:31:47Z<p>The features in question require both compiler and runtime support and so, while it is certainly possible to build a compiler that supports the syntax (LLVM/Clang comes to mind) many of these features call out to the Objective-C runtime and, to my knowledge (and quick double checking on Google) the GNU runtime doesn't have the necessary support.</p>
http://stackoverflow.com/questions/549672/is-it-possible-to-observe-a-readonly-property-of-an-object-in-cocoa-touch/552486#5524860Answer by wisequark for Is it possible to observe a readonly property of an object in Cocoa Touch?wisequark2009-02-16T07:24:43Z2009-02-16T07:24:43Z<p>You can certainly observe readonly properties but be aware that in order for KVO to work you need to be KVC compliant - which means using either the setter/getter for a property (since you're readonly, you don't get a setter for free via <code>@synthesize</code>) or the property's <code>-setValue:forKey:</code> method.</p>
http://stackoverflow.com/questions/516200/relative-paths-not-working-in-xcode-c/519181#5191812Answer by wisequark for Relative Paths Not Working in Xcode C++wisequark2009-02-06T05:07:29Z2009-02-06T05:07:29Z<p>My guess is the type of app you're building is a one-off executable rather than being an executable app-bundle. On OS X and Unixes in general, resources are loaded from the absolute root of the drive which is different than Visual C++'s treatment of "root" being the path relative to project's root. Don't rely on the path ever being relative to anything in particular across OSes (or OS versions for that matter). You can set a working directory in Xcode but that will only impact applications launched from Xcode. If you were to execute it from the build directory in Finder, it'd once again be set to the root of the drive.</p>
http://stackoverflow.com/questions/444772/best-regex-library-for-iphone-sdk-app/451218#4512184Answer by wisequark for Best regex library for iphone sdk app?wisequark2009-01-16T17:09:17Z2009-01-16T17:09:17Z<p><a href="http://regexkit.sourceforge.net/" rel="nofollow">RegexKitLite</a> is available and works properly on iPhone either included from source as part of your Xcode project or by linking in a static library (which the ToS of the SDK do permit).</p>
http://stackoverflow.com/questions/421463/should-i-use-nsdecimalnumber-to-deal-with-money/421493#4214931Answer by wisequark for Should I use NSDecimalNumber to deal with money?wisequark2009-01-07T18:37:02Z2009-01-07T18:37:02Z<p>I've found it convenient to use an integer to represent the number of cents and then divide by 100 for presentation. Avoids the whole issue.</p>
http://stackoverflow.com/questions/393662/does-using-lists-of-structs-make-sense-in-cocoa/414033#4140331Answer by wisequark for Does using lists of structs make sense in cocoa?wisequark2009-01-05T18:21:58Z2009-01-05T18:21:58Z<p>In general, the use of a struct implies the existence of a relatively simple data type that has no logic associated with it nor should have any logic associated with it. Take an <code>NSPoint</code> for instance - it is merely a (x,y) representation. Given this, there are also some issues that arise from it's use. In general, this is OK for this type of data as we usually observe for a change in the point rather than the y-coordinate of a point (fundamentally, (0,1) isn't the same as (1,1) shifted down by 1 unit). If this is an undesirable behavior, it may be a better idea to use a class.</p>
http://stackoverflow.com/questions/413242/how-do-i-detect-that-an-sdk-app-is-running-on-a-jailbroken-phone/413951#4139519Answer by wisequark for How do I detect that an SDK app is running on a jailbroken phone?wisequark2009-01-05T18:00:49Z2009-01-05T18:00:49Z<p>It depends what you mean by jailbreak. In the simple case, you should be able to see if Cydia is installed and go by that - something like</p>
<pre><code>NSString *filePath = @"/Applications/Cydia.app";
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath])
{
// do something useful
}
</code></pre>
<p>For hacked kernels, it's a little (lot) more involved.</p>
http://stackoverflow.com/questions/342910/application-crashes-on-iphone-os-2-2-works-fine-on-2-1/346038#3460381Answer by wisequark for Application crashes on iPhone OS 2.2, works fine on 2.1. wisequark2008-12-06T07:06:32Z2008-12-06T07:06:32Z<p>That trace is rather meaningless without access to the code. My suggestion would be to download and install the Clang Static Analyzer and run your code against it to determine where the leak exists. It can be found at <a href="http://clang.llvm.org/StaticAnalysis.html" rel="nofollow">http://clang.llvm.org/StaticAnalysis.html</a> - to use it, copy the contents of the .tar.gz file to /usr/bin then cd to your Xcode project and run <code>scan-build xcodebuild</code>. At which point you'll be given output that directs you to copy and pate a line that resembles <code>scan-view /tmp/logs/...</code> That should give you some indication.</p>
http://stackoverflow.com/questions/342933/why-isnt-the-navigationitem-titleview-working/346035#3460352Answer by wisequark for Why isn't the navigationItem.titleView working?wisequark2008-12-06T07:03:46Z2008-12-06T07:03:46Z<p>If you examine your button, you'll find that by using the convenience method to initialize it you are left with a 0x0 button that is positioned at 0,0 within the bounds of the view it is being added to. Before doing this, you must define the contents of the <code>frame</code> property of the button. See the code below:</p>
<pre><code>UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn.frame = CGRectMake(0, 0, 400, kCustomButtonHeight);
[btn setTitle:@"list" forState:UIControlStateNormal];
self.navigationItem.titleView = btn;
</code></pre>
http://stackoverflow.com/questions/345772/is-there-any-sample-code-to-do-iphone-mulitithreading-tasks/346023#3460232Answer by wisequark for Is there any sample code to do iPhone mulitithreading tasks?wisequark2008-12-06T06:46:44Z2008-12-06T06:46:44Z<p>Ultimately the device you are running your code on has a single processor and cannot possibly load large quantities (gigabytes) of data. The best route, by is likely that suggested by Ben (NSURLConnection asynchronously) which gives you the added advantage of being able to cleanly cancel and handle error messages. While it isn't technically threaded in the way you probably think you want it to be, it is well integrated with the event loop and is non-blocking. If that is still not enough, I would suggest looking at NSOperation and NSOperationQueue. You can fire off an NSOperation sub-class object and perform the download there (I would still advise doing it asynchronously there so as to enable canceling, pausing, etc).</p>
http://stackoverflow.com/questions/339559/passing-object-from-controller-to-a-view/341115#341115-1Answer by wisequark for Passing object from controller to a viewwisequark2008-12-04T16:01:33Z2008-12-04T16:01:33Z<p>So why aren't you declaring them as properties of the class?</p>
http://stackoverflow.com/questions/340962/radio-dial-type-functionality-as-seen-on-where-to-app/341101#3411011Answer by wisequark for Radio dial type functionality as seen on Where To? Appwisequark2008-12-04T15:59:23Z2008-12-04T15:59:23Z<p>I actually think it's a single image that has it's layer rotated in response to touch events and then calculates which is the active button based on the radial distance from the original position. It's not horribly complicated code (touchset change is left or right and rotate in response to that, modify the hittest method to respect the radial deltas) but the math is more than I can do before six cups of coffee.</p>
http://stackoverflow.com/questions/313135/iphone-documentation-can-i-watch-the-getting-started-videos-from-linux/313287#3132871Answer by wisequark for iPhone Documentation - Can I Watch the Getting Started Videos from Linux?wisequark2008-11-24T02:24:38Z2008-11-24T02:24:38Z<p>I believe you need to download them from iTunes which requires either a Mac or PC but they are standard mpeg-4 videos and should be viewable in vlc.</p>
http://stackoverflow.com/questions/309449/interface-builder-cant-display-160dpi-images-correctly/310866#3108662Answer by wisequark for Interface Builder can't display 160dpi images correctly ??wisequark2008-11-22T04:37:09Z2008-11-22T04:37:09Z<p>IB is not a tool for designing a UI, it is a tool for implementing one. It is designed to perform well rather than display well (this is more important in complex desktop UI design than mobile but the tool is the same for both). The best advice is perhaps to take a cue from the publishing world (where this is a common practice for applications that display large amounts of high resolution graphics such as Adobe InDesign) and keep track of exact measurements for controls - the x,y coordinate positions and height/width. Then you can use the inspector to precisely position controls.</p>
http://stackoverflow.com/questions/310770/algorithm-array-of-arrays-in-cocoa-touch-perhaps-using-nscountedset/310858#3108581Answer by wisequark for Algorithm: array of arrays in Cocoa Touch (perhaps using NSCountedSet)wisequark2008-11-22T04:29:14Z2008-11-22T04:29:14Z<p>And NSDictionary <em>is</em> a hash table.</p>
http://stackoverflow.com/questions/309651/responsibilities-of-delegates-and-controllers-in-cocoa-touch/310250#3102501Answer by wisequark for Responsibilities of Delegates and Controllers in Cocoa Touch?wisequark2008-11-21T21:27:01Z2008-11-21T21:27:01Z<p>A delegate is some object that implements a set of methods which either your application or the framework you link against depends on for functioning. It is a means of implementing a delegation based design pattern wherein the responsibility for performing an action is transferred from some root source to an interested third party. For instance, <code>UIApplication</code> has delegate <em>methods</em> that provide a third party with the ability to perform operations at certain times during the applications lifetime. It can be though of as a milestone in a timeline into which you can contribute to the story.</p>
<p>A controller is a totally different animal and is responsible for doing, well, the controlling. A ViewController is charged with managing views - for loading them into memory from disk when they are needed and unloading them when they are not. They transform content from some underlying model object into a form that is usable by your view objects, load content into your in-memory model from the disk or from the internet, and dump the contents back to disk when you save and/or quit.</p>
http://stackoverflow.com/questions/305860/how-would-you-construct-and-interact-with-a-grid-like-a-sudoku-board/305999#3059990Answer by wisequark for How would you construct and interact with a grid like a Sudoku board?wisequark2008-11-20T16:46:53Z2008-11-20T16:46:53Z<p>The grid is a means of viewing contents, not of storing the representation. Ultimately, your grid is made of cells which have contents and therefor your underlying model object is perhaps best embodied by the cell. There are a number of ways to design the underlying storage for a Sudoku game and the bigger challenge will certainly lie in the generation of puzzles. However, the advice to take from this is to not determine your model based on how it appears on screen - the view layer is totally separate and so doing something like storing the board a a two-dimensional array would be a bad idea.</p>
http://stackoverflow.com/questions/302064/how-can-i-disallow-use-of-a-application-feature-based-on-if-the-device-is-a-3g-or/303606#3036063Answer by wisequark for How can I disallow use of a application feature based on if the device is a 3G or Non-3G device?wisequark2008-11-19T22:22:51Z2008-11-19T22:22:51Z<p>The following code with allow you to determine the exact device that is in use but I would first consider the fact that a 3G device may not actually be able to obtain a GPS lock as the process of doing so is quite slow and requires a more or less clear view of the sky.</p>
<p>For an iPhone 3G the result of this method will be iPhone1,2</p>
<pre><code>- (NSString *)deviceModel
{
NSString *deviceModel = nil;
char buffer[32];
size_t length = sizeof(buffer);
if (sysctlbyname("hw.machine", &buffer, &length, NULL, 0) == 0) {
deviceModel = [[NSString alloc] initWithCString:buffer encoding:NSASCIIStringEncoding];
}
return [deviceModel autorelease];
}
</code></pre>
http://stackoverflow.com/questions/302496/another-appropriate-use-of-property-design-question/303569#3035690Answer by wisequark for Another appropriate use of @property design questionwisequark2008-11-19T22:11:57Z2008-11-19T22:11:57Z<p>A property should map, intuitively if not exactly, to some storage mechanism of your class - be it an ivar declared in your <code>@interface</code> or something synthesized by the runtime. The act of calling a method such as <code>canBecomeFirstResponder</code> need not necessarily query the class for a storage mechanism which holds a trivial <code>BOOL</code> but rather causes some chain of events to fire off that queries the responder tree. That is to say that there is no <code>firstResponder</code> ivar as the value of any of those methods cannot be stored in a cache and must be determined at the time of their execution.</p>
http://stackoverflow.com/questions/300048/why-does-xcode-keep-changing-its-active-executable/300514#300514-2Answer by wisequark for Why does Xcode keep changing its active executable?wisequark2008-11-18T23:14:12Z2008-11-18T23:14:12Z<p>So.. why are you actually doing that? It is probably better, given the nature of the iPhone (with multiple frameworks for multiple architectures), to set up different Targets for your various projects. The executable produced will be the result of the build phases for your targets.</p>
http://stackoverflow.com/questions/299390/how-do-i-generically-use-kvc-to-update-fields/299496#2994961Answer by wisequark for How do I generically use KVC to update fields?wisequark2008-11-18T17:36:17Z2008-11-18T17:36:17Z<p>You should do the conversion yourself with a number formatter, it gives you finer control than anything that the framework might consider to be appropriate. It is also, probably, not a good idea to use a single instance of an object to update the values for your ivars. More appropriately, you could perform your update based on the class of the object (providing you are not storing in an <code>id</code> by querying the runtime as to the class of the object by means of <code>object_getClassName</code>. More information is available in the Objective-C 2.0 Runtime Reference. But in general, you will likely find bugs in your code as a result of doing things that way.</p>
http://stackoverflow.com/questions/297297/uibutton-in-a-uitableview-header-ignores-most-touches/297381#297381-1Answer by wisequark for UIButton in a UITableView header ignores most toucheswisequark2008-11-17T23:43:58Z2008-11-17T23:43:58Z<p>You should consider that this is not the intended sue of the headerView and that an implementation such as that might result in rejection from the AppStore as a result of a HIG violation. Given that the dimensions of a header are intended to be small, it is probably better to consider a restructuring of your view. Having said that, there is no easy way to do it short of hand detecting touch events and determining the geometry yourself, then executing a selector based on the geometry - in short, rolling your own button class.</p>
http://stackoverflow.com/questions/294202/iphone-app-using-net-development-environment/296541#2965410Answer by wisequark for iPhone app using .NET development environment?wisequark2008-11-17T19:11:34Z2008-11-17T19:11:34Z<p>There are ways to get other languages to work, they will - however - almost certainly not be accepted to the AppStore and will break with future updates. Generally it is better to use a screw driver to screw something into a hole than to thwap it repeated with a hammer attached to a 250hp motor...</p>
http://stackoverflow.com/questions/295778/iphone-debugging-pointer-being-freed-was-not-allocated-errors/296523#2965231Answer by wisequark for iPhone - debugging "pointer being freed was not allocated" errorswisequark2008-11-17T19:07:27Z2008-11-17T19:07:27Z<p>I generally use NSZombie for such things, check <a href="http://www.cocoadev.com/index.pl?DebuggingAutorelease" rel="nofollow">this</a> out</p>
http://stackoverflow.com/questions/290740/toolbar-moves-up-when-call-finishes/290810#2908101Answer by wisequark for Toolbar moves up when call finisheswisequark2008-11-14T17:38:19Z2008-11-14T17:38:19Z<p>In general setting your auto resize masks properly should fix things. Could you update with a screenshot to show exactly where the resizing issues are happening?</p>
http://stackoverflow.com/questions/288424/irc-channel-for-iphone-developers/289178#2891782Answer by wisequark for IRC channel for iPhone developers?wisequark2008-11-14T03:41:44Z2008-11-14T03:41:44Z<p><code>#iphone-dev</code> on freenode</p>
http://stackoverflow.com/questions/288412/deserializing-a-complex-json-result-array-of-dictionaries-with-touchjson/289175#2891751Answer by wisequark for Deserializing a complex JSON result (array of dictionaries) with TouchJSONwisequark2008-11-14T03:40:56Z2008-11-14T03:40:56Z<p>At it's heart JSON deals with objects, your code to de-serialize should be as follows</p>
<p><code>{"objects":[{"id": "123456", "name": "touchjson"}, {"id": "3456", "name": "bleh"}]}</code></p>
<p>which does work with the latest checkout.</p>
http://stackoverflow.com/questions/559783/how-do-i-run-the-iphone-sdk-on-windows-xp/559845#559845Comment by wisequark on how do i run the iphone sdk on windows xp?wisequark2009-02-18T05:36:21Z2009-02-18T05:36:21ZSome of us consider that a good thing... http://stackoverflow.com/questions/333441/adding-a-uilabel-to-a-uitoolbar/333509#333509Comment by wisequark on Adding a UILabel to a UIToolbarwisequark2008-12-02T18:27:07Z2008-12-02T18:27:07ZNote that if you chose to go this route you must style your label appropriately (label.backgroundColor = [UIColor clearColor], etc). You can also init a UIBarButtonItem to be styled Plain which will give you a similar lookhttp://stackoverflow.com/questions/302496/another-appropriate-use-of-property-design-question/302899#302899Comment by wisequark on Another appropriate use of @property design questionwisequark2008-11-20T15:59:55Z2008-11-20T15:59:55ZThe @synthesize directive merely is a flag to the runtime that says "create an accessor or mutator from your template." The underlying reason for not creating properties that would back those methods is that there isn't a storage object to back them. They cause a calculation rather than a lookup.http://stackoverflow.com/questions/302496/another-appropriate-use-of-property-design-question/303569#303569Comment by wisequark on Another appropriate use of @property design questionwisequark2008-11-20T15:58:31Z2008-11-20T15:58:31ZThat doesn't mean anything. The point is that the dot syntax for properties implies certain things like fast lookups and ascertaining responder query answers isn't guaranteed to be <i>as</i> fast as, say, getting an intValue hence why they are not properties.http://stackoverflow.com/questions/302664/objective-c-and-sqlites-datetime-type/302804#302804Comment by wisequark on Objective-C and sqlite's DATETIME type.wisequark2008-11-19T22:14:02Z2008-11-19T22:14:02ZIndeed, this is the correct mapping but be aware that SQLite does not impose a restriction on the types that it will hold but uses types merely as suggestions.http://stackoverflow.com/questions/297297/uibutton-in-a-uitableview-header-ignores-most-touches/297381#297381Comment by wisequark on UIButton in a UITableView header ignores most toucheswisequark2008-11-18T17:29:52Z2008-11-18T17:29:52ZMore likely than not I would suggest filing a bug.http://stackoverflow.com/questions/290740/toolbar-moves-up-when-call-finishes/290810#290810Comment by wisequark on Toolbar moves up when call finisheswisequark2008-11-14T20:29:32Z2008-11-14T20:29:32ZYou can restructure it such that the toolbar is attached to the bottom and the background view rests on top of it. It then woud auto-resize while the toolbar would remain fixed.http://stackoverflow.com/questions/288412/deserializing-a-complex-json-result-array-of-dictionaries-with-touchjson/289193#289193Comment by wisequark on Deserializing a complex JSON result (array of dictionaries) with TouchJSONwisequark2008-11-14T17:42:40Z2008-11-14T17:42:40ZIn most languages it is also perfectly legal to do something like <code>++i--;</code> that does not mean it is good practice. Similarly, it is not a good practice to deserialize a straight array that is not an object. Just because you can does not mean you should.http://stackoverflow.com/questions/284321/hidden-uinavigationcontroller-inside-uitabbarcontroller/286644#286644Comment by wisequark on Hidden UINavigationController inside UITabBarControllerwisequark2008-11-13T18:42:40Z2008-11-13T18:42:40ZIf there is no concept of drilling down then why are you using a navigation controller to manage views? It's sole intended purpose is for applications such as the iPod where one goes artist > album > song, etc. http://stackoverflow.com/questions/284428/avoiding-property-itis-i-e-overuse-of-properties-when-are-they-appropriate/284818#284818Comment by wisequark on Avoiding @property-itis (i.e. overuse of properties, when are they appropriate)?wisequark2008-11-13T02:23:55Z2008-11-13T02:23:55ZIf we define a property as some ivar which is exposed by means of an accessor or mutator or both, then computeWeight is not the same as getWeight and getWeight should not necessarily call computeWeight.http://stackoverflow.com/questions/281764/in-cocoatouch-iphone-os-how-do-i-find-eliminate-leaks-that-the-instruments-leak/282303#282303Comment by wisequark on In CocoaTouch (iPhone OS) how do I find/eliminate leaks that the Instruments Leak tool doesn't find?wisequark2008-11-12T18:41:57Z2008-11-12T18:41:57ZJust because you aren't creating your own foundation objects doesn't mean they aren't being created for you as a result of things like an NSArray or NSURLConnectionhttp://stackoverflow.com/questions/284428/avoiding-property-itis-i-e-overuse-of-properties-when-are-they-appropriate/284818#284818Comment by wisequark on Avoiding @property-itis (i.e. overuse of properties, when are they appropriate)?wisequark2008-11-12T18:23:09Z2008-11-12T18:23:09ZThis is more of an issue that is the result of a poor design decision. The accessor should <i>never</i> cause a long computation to result and should instead return a cached value local to the object owning the property. If a long computation is to occur it should be explicit.