User craigb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T00:01:51Z http://stackoverflow.com/feeds/user/18590 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/232570/what-are-the-best-cocoa-touch-iphone-programming-blogs 21 What are the best Cocoa-Touch/iPhone programming blogs? craigb 2008-10-24T05:36:11Z 2009-12-05T17:24:05Z <p>What are the best Cocoa-Touch/iPhone programming blogs? One blog per answer please.</p> <p>Some answers may overlap with <a href="http://stackoverflow.com/questions/232567/best-cocoamac-os-x-programming-blogs"> Best Cocoa/Mac OS X programming blogs? </a>, but I'm looking for blogs with good meaty iPhone specific content (i.e. code)</p> http://stackoverflow.com/questions/224467/how-can-i-fail-a-webtest 1 How can I Fail a WebTest? craigb 2008-10-22T04:11:24Z 2009-11-05T21:00:02Z <p>I'm using Microsoft WebTest and want to be able to do something similar to NUnit's <code>Assert.Fail()</code>. The best i have come up with is to <code>throw new webTestException()</code> but this shows in the test results as an <code>Error</code> rather than a <code>Failure</code>. </p> <p>Other than reflecting on the <code>WebTest</code> to set a private member variable to indicate the failure, is there something I've missed?</p> <p>EDIT: I have also used the <code>Assert.Fail()</code> method, but this still shows up as an error rather than a failure when used from within WebTest, and the <code>Outcome</code> property is read-only (has no public setter).</p> <p>EDIT: well now I'm really stumped. I used reflection to set the <code>Outcome</code> property to Failed but the test <em>still</em> passes!</p> <p>Here's the code that sets the Oucome to failed:</p> <pre><code>public static class WebTestExtensions { public static void Fail(this WebTest test) { var method = test.GetType().GetMethod("set_Outcome", BindingFlags.NonPublic | BindingFlags.Instance); method.Invoke(test, new object[] {Outcome.Fail}); } } </code></pre> <p>and here's the code that I'm trying to fail:</p> <pre><code> public override IEnumerator&lt;WebTestRequest&gt; GetRequestEnumerator() { this.Fail(); yield return new WebTestRequest("http://google.com"); } </code></pre> <p><code>Outcome</code> is getting set to <code>Oucome.Fail</code> but apparently the WebTest framework doesn't really use this to determine test pass/fail results.</p> http://stackoverflow.com/questions/232567/best-cocoa-mac-os-x-programming-blogs 26 Best Cocoa/Mac OS X programming blogs? craigb 2008-10-24T05:33:53Z 2009-10-09T21:24:03Z <p>What are the best Cocoa/Mac OS X programming blogs? One blog per answer please.</p> <ul> <li>blog should be active (i.e. updated regularly <em>and</em> recently)</li> <li>blog should have code-centric posts (although not all)</li> </ul> http://stackoverflow.com/questions/140453/continuous-integration-servers/140488#140488 6 Answer by craigb for Continuous Integration Servers craigb 2008-09-26T16:17:33Z 2009-09-10T21:39:18Z <p>Atlassian's <a href="http://www.atlassian.com/software/bamboo/" rel="nofollow">Bamboo</a> looks nice but I don't have any experience with it. Looks to be similar in features to <a href="http://studios.thoughtworks.com/cruise-continuous-integration" rel="nofollow">Cruise</a> or <a href="http://www.jetbrains.com/teamcity/index.html" rel="nofollow">TeamCity</a>.</p> http://stackoverflow.com/questions/1382372/update-version-info-with-msbuild-after-binaries-compilation/1382415#1382415 0 Answer by craigb for Update version info with MSBuild (after binaries compilation) craigb 2009-09-05T03:58:48Z 2009-09-05T04:04:40Z <p>Much easier to do this before compilation by writing an AssemblyInfo file (or any file with assembly attributes) thats included in your projects.</p> <p>Example of writing this in powershell found here: <a href="http://github.com/ayende/rhino-divandb/blob/a4d14de38f91326ab39b9b2492ea79ee6d903ed4/psake_ext.ps1" rel="nofollow">http://github.com/ayende/rhino-divandb/blob/a4d14de38f91326ab39b9b2492ea79ee6d903ed4/psake_ext.ps1</a></p> <p>One caveat -- the versions in .net are not just any string but <code>ushort</code>s which means they have a max of 65535 (see docs <a href="http://msdn.microsoft.com/en-us/library/cbf1574z.aspx" rel="nofollow">here</a>). If you use the svn revision (as we did at one point) your build will break once it exceeds that magic number. </p> <p>Why would you be trying to do this after compilation?</p> http://stackoverflow.com/questions/112784/what-mysql-client-application-would-you-recommend-for-mac-os-x/112792#112792 7 Answer by craigb for What MySQL client application would you recommend for Mac OS X? craigb 2008-09-22T01:44:53Z 2009-08-11T18:09:58Z <p>There is also <a href="http://code.google.com/p/sequel-pro/" rel="nofollow">Sequel Pro</a> (free, open source, formerly called "CocoaMySql")</p> http://stackoverflow.com/questions/104339/objective-c-switch-using-objects 4 Objective-C switch using objects? craigb 2008-09-19T18:29:45Z 2009-08-01T03:47:27Z <p>I'm doing some Objective-C programming that involves parsing an NSXmlDocument and populating an objects properties from the result.</p> <p>First version looked like this:</p> <pre><code>if([elementName compare:@"companyName"] == 0) [character setCorporationName:currentElementText]; else if([elementName compare:@"corporationID"] == 0) [character setCorporationID:currentElementText]; else if([elementName compare:@"name"] == 0) ... </code></pre> <p>But I don't like the <code>if-else-if-else</code> pattern this produces. Looking at the <code>switch</code> statement I see that i can only handle <code>ints</code>, <code>chars</code> etc and not objects... so is there a better implementation pattern I'm not aware of?</p> <p>BTW I did actually come up with a better solution for setting the object's properties, but I want to know specifically about the <code>if</code>-<code>else</code> vs <code>switch</code> pattern in Objective-C</p> http://stackoverflow.com/questions/104583/does-the-iphone-sdk-allow-hardware-access-to-the-dock-connector 5 Does the iPhone SDK allow hardware access to the dock connector? craigb 2008-09-19T19:02:59Z 2009-04-06T13:47:14Z <p>I haven't been able to find any documentation on hardware access via the iPhone SDK so far. I'd like to be able to send signals via the dock connector to an external hardware device but haven't seen any evidence that this is accessible via the SDK (not interested in possibilities on jailbroken iPhones).</p> <p>Anyone have any pointers to docs for this or some idea of what deep dark corner i should look?</p> http://stackoverflow.com/questions/112643/how-can-i-dynamically-create-a-selector-at-runtime-with-objective-c 5 How can I dynamically create a selector at runtime with Objective-C? craigb 2008-09-22T00:22:32Z 2008-11-12T03:14:49Z <p>I know how to create a <code>SEL</code> at compile time using <code>@selector(MyMethodName:)</code> but what I want to do is create a selector dynamically from an <code>NSString</code>. Is this even possible?</p> <p>What I can do:</p> <pre><code>SEL selector = @selector(doWork:); [myobj respondsToSelector:selector]; </code></pre> <p>What I want to do: (pseudo code, this obviously doesn't work)</p> <pre><code>SEL selector = selectorFromString(@"doWork"); [myobj respondsToSelector:selector]; </code></pre> <p>I've been searching the Apple API docs, but haven't found a way that doesn't rely on the compile-time <code>@selector(myTarget:)</code> syntax.</p> http://stackoverflow.com/questions/232570/what-are-the-best-cocoa-touch-iphone-programming-blogs/237546#237546 0 Answer by craigb for What are the best Cocoa-Touch/iPhone programming blogs? craigb 2008-10-26T04:18:04Z 2008-10-26T04:18:04Z <p>O'Reilly media's <a href="http://digitalmedia.oreilly.com/iphone/" rel="nofollow">Inside iPhone</a></p> http://stackoverflow.com/questions/236538/rake-and-current-directory/236557#236557 8 Answer by craigb for Rake and current directory craigb 2008-10-25T15:19:40Z 2008-10-25T15:19:40Z <p>use <code>__FILE__</code> to get the file name then you can get the directory from there:</p> <p>in <code>test.rb</code></p> <pre><code>puts __FILE__ </code></pre> <p>output:</p> <pre><code>/users/foo/test.rb </code></pre> <p><code>__FILE__</code> resolves to the full path of the file it is in. </p> <p>Use this to get the dir name:</p> <pre><code>File.dirname(__FILE__) </code></pre> http://stackoverflow.com/questions/233648/what-is-the-most-useful-net-library-youve-found/234227#234227 12 Answer by craigb for What is the most useful .net library you've found? craigb 2008-10-24T16:21:26Z 2008-10-24T16:21:26Z <p><a href="http://www.nunit.org/" rel="nofollow">NUnit</a></p> http://stackoverflow.com/questions/232567/best-cocoa-mac-os-x-programming-blogs/234212#234212 3 Answer by craigb for Best Cocoa/Mac OS X programming blogs? craigb 2008-10-24T16:17:48Z 2008-10-24T16:17:48Z <p><a href="http://chanson.livejournal.com/" rel="nofollow">Chris Hanson</a> - <a href="http://stackoverflow.com/users/714/chris-hanson">SO user profile</a></p> http://stackoverflow.com/questions/232567/best-cocoa-mac-os-x-programming-blogs/234205#234205 2 Answer by craigb for Best Cocoa/Mac OS X programming blogs? craigb 2008-10-24T16:15:54Z 2008-10-24T16:15:54Z <p><a href="http://bill.dudney.net/roller/objc/" rel="nofollow">PrEV</a> - "Thoughts from a NeXTStep Guy on Cocoa Development"</p> http://stackoverflow.com/questions/232567/best-cocoa-mac-os-x-programming-blogs/232578#232578 18 Answer by craigb for Best Cocoa/Mac OS X programming blogs? craigb 2008-10-24T05:43:32Z 2008-10-24T05:43:32Z <p><a href="http://cocoawithlove.com/" rel="nofollow">Cocoa with Love</a></p> http://stackoverflow.com/questions/232567/best-cocoa-mac-os-x-programming-blogs/232577#232577 12 Answer by craigb for Best Cocoa/Mac OS X programming blogs? craigb 2008-10-24T05:42:39Z 2008-10-24T05:42:39Z <p><a href="http://www.cimgf.com/" rel="nofollow">Cocoa is my Girfriend</a></p> http://stackoverflow.com/questions/44799/preventing-command-line-injection-attacks/229780#229780 1 Answer by craigb for Preventing Command Line Injection Attacks craigb 2008-10-23T13:51:08Z 2008-10-23T13:51:08Z <p>Don't use a blacklist for preventing injections. If there are <em>n</em> ways to inject code, you'll think of <em>n - m</em> where <em>m > 0</em>.</p> <p>Use a whitelist of accepted parameters (or patterns). It is much more restrictive by nature, but that's the nature of security.</p> http://stackoverflow.com/questions/228476/avoiding-sql-injection-in-sql-query-with-like-operator-using-parameters/228491#228491 4 Answer by craigb for Avoiding SQL Injection in SQL query with Like Operator using parameters? craigb 2008-10-23T03:52:17Z 2008-10-23T03:52:17Z <p>try this: </p> <pre><code>var query = "select * from foo where name like @searchterm"; using (var command = new SqlCommand(query, connection)) { command.Parameters.AddWithValue("@searchterm", String.Format("%{0}%", searchTerm)); var result = command.ExecuteReader(); } </code></pre> <p>the framework will automatically deal with the quoting issues.</p> http://stackoverflow.com/questions/224430/xcopy-asp-net-deployment-of-a-subversion-managed-project/224438#224438 3 Answer by craigb for xcopy ASP.NET deployment of a Subversion-managed project craigb 2008-10-22T03:54:53Z 2008-10-22T04:05:06Z <p>two suggestions:</p> <ul> <li>Use <a href="http://en.wikipedia.org/wiki/Robocopy" rel="nofollow">robocopy</a> or xcopy to filter out the <code>.svn</code> folders</li> <li><code>svn export</code> the repository to the webserver (<a href="http://svnbook.red-bean.com/en/1.0/re10.html" rel="nofollow">docs</a>). Exporting will not write any <code>.svn</code> folders</li> </ul> <p>see also: <a href="http://stackoverflow.com/questions/222188/tortoise-svn-hidden-svn-folders">Tortoise SVN hidden SVN folders</a></p> http://stackoverflow.com/questions/219156/nant-with-db-integration-tests-and-eventually-continuous-integration/223747#223747 1 Answer by craigb for NAnt with DB integration tests, and eventually Continuous Integration craigb 2008-10-21T22:21:39Z 2008-10-21T22:21:39Z <p>See this related thread <a href="http://stackoverflow.com/questions/102902/what-is-a-good-ci-build-process#103759">What is a good CI build process?</a></p> <p>You are on the right track. If you're using a decent CI tool, you should be able to set each setup up as a separate project that triggers the next step in the chain... i.e. sucessfull build triggers tests which trigger deployment which triggers integration etc</p> <p>This way your ealiest "break" stops the line so to speak.</p> <p>We use CruiseControl to build, unit-test, configure and deploy, run integration tests and code coverage, run acceptance tests, and package for release. This is with a system of 8 or so web services, and a dozen or so databases, all with interralated configuration and deployment dependencies with across multiple environments with different configurations (anythin from single boxes to redundent boxes for each component)</p> http://stackoverflow.com/questions/187799/test-data-builder-pattern-more-useful-or-more-upkeep/222686#222686 2 Answer by craigb for Test Data Builder pattern: more useful or more upkeep? craigb 2008-10-21T17:13:02Z 2008-10-21T17:13:02Z <p>I like using fluent builders for the object under test to express the nature of the object I'm creating. ObjectMothers tend to get unwieldy and tend to (in the implementations I've come across) end up hiding details of the objects creation.</p> <p>Compare:</p> <pre><code>User fred = CreateUser("fred").WithReputation(900) .WithScholarBadge() .WithCriticBadge() </code></pre> <p>vs:</p> <pre><code>User fred = UserObjectMother.Fred() </code></pre> <p>To express the idea that the user has rep 900 and those two particular badges would be unweildy to do with the ObjectMother. The tendecy I've seen is developers then finding this method that builds <code>Fred()</code>, which is close to what they need so they add more attributes to the object. The fluent builder on the other hand is expressive as to what is being built, and is easy to create specific users for the test as required.</p> <p>That said, I also end up using these patterns exclusively in test code as the production code does not usually require this sort of expressiveness.</p> http://stackoverflow.com/questions/222369/what-naming-convention-do-you-use-for-the-decorator-pattern/222639#222639 1 Answer by craigb for What naming convention do you use for the Decorator Pattern? craigb 2008-10-21T16:58:53Z 2008-10-21T16:58:53Z <p>Generally where the pattern is encapsulated in an object (vs. a collection of objects) then it's clearer and easier to include the pattern name in the class, in this case using <code>Decorator</code> as a suffix. This work well for proxies, decorators, factories, adapters etc.. but does not work for other patterns where a group of objects is needed in the implementation of the pattern like a bridge (i.e. what object would appropraitely take the -bridge suffix?)</p> http://stackoverflow.com/questions/220668/continuous-integration-for-ruby-on-rails/220692#220692 17 Answer by craigb for Continuous Integration for Ruby on Rails? craigb 2008-10-21T03:30:30Z 2008-10-21T03:30:30Z <p>How about <a href="http://cruisecontrolrb.thoughtworks.com/" rel="nofollow">CruiseControl.rb</a>?</p> <p>Same crowd that did CruiseControl (thoughtworks) and written in Ruby. Very easy to use Rake to integrate your other tools, and can use the <a href="http://segment7.net/projects/ruby/growl/" rel="nofollow">ruby-growl</a> gem for your nitifications. </p> http://stackoverflow.com/questions/32458/random-data-in-unit-tests/185830#185830 1 Answer by craigb for Random data in Unit Tests? craigb 2008-10-09T03:26:04Z 2008-10-09T03:26:04Z <p>If you're using random input for your tests you need to log the inputs so you can see what the values are. This way if there is some edge case you come across, you <em>can</em> write the test to reproduce it. I've heard the same reasons from people for not using random input, but once you have insight into the actual values used for a particular test run then it isn't as much of an issue.</p> <p>The notion of "arbitrary" data is also very useful as a way of signifying something that is <em>not</em> important. We have some acceptance tests that come to mind where there is a lot of noise data that is no relevance to the test at hand.</p> http://stackoverflow.com/questions/149198/can-i-commit-only-parts-of-my-code-using-svn-or-mercurial/149283#149283 7 Answer by craigb for Can I commit only parts of my code using SVN or Mercurial? craigb 2008-09-29T15:46:10Z 2008-09-29T15:46:10Z <p>I would recommend not working like this. </p> <p>If you have to sets of changes, set A which is ready to check in and set B which is not ready yet, how can you be sure that only checking in set A will not break your build/tests? You may miss some lines, forget about lines in a different file, or not realize a dependency that A has on B breaking the build for others.</p> <p>Your commits should be discreet atomic changes that don't break the build for you <em>or others</em> on you team. If you are partially committing a file you are greatly increasing the chances you will break the build for others without knowing about it until you've got some unhappy coworker knocking on your door.</p> <p>The big question is, why do you feel the need to work this way?</p> http://stackoverflow.com/questions/142225/is-there-a-dynamic-language-based-net-build-tool/142350#142350 2 Answer by craigb for Is there a dynamic language based .NET build tool? craigb 2008-09-26T22:26:40Z 2008-09-27T03:36:49Z <p>There is always the <a href="http://code.google.com/p/boo-build-system/" rel="nofollow">Boo Build System</a> or "Boobs" for short (yes it's a silly name) and looks very similar to Rake.</p> <p>Ayende has written about this previously in <a href="http://ayende.com/Blog/archive/2007/09/22/Introducing-Boobs-Boo-Build-System.aspx" rel="nofollow">Introducing the Boobs Build System</a> and shows a nice example of the syntax.</p> <p>Boo is written in C# and has a really nifty compiler that can be modified at runtime for doing all sorts of domain specific language (DSL) tricks.</p> http://stackoverflow.com/questions/137399/unit-testing-without-assertions/137441#137441 1 Answer by craigb for Unit Testing without Assertions craigb 2008-09-26T02:40:44Z 2008-09-27T00:52:29Z <p>Such a test smells. It should check that the file was written to, at least that the modified time was updated perhaps.</p> <p>I've seen quite a few tests written this way that ended up not testing anything at all i.e. the code didn't work, but it didn't blow up either. </p> <p>If you have some explicit requirement that the code under test doesn't throw an exception and you want to explicitly call out this fact (tests as requirements docs) then I would do something like this:</p> <pre><code>try { unitUnderTest.DoWork() } catch { Assert.Fail("code should never throw exceptions but failed with ...") } </code></pre> <p>... but this still smells a bit to me, probably because it's trying to prove a negative.</p> http://stackoverflow.com/questions/141869/best-place-for-log-files-in-an-in-house-it-environment/142371#142371 1 Answer by craigb for Best place for log files in an in-house IT environment craigb 2008-09-26T22:33:36Z 2008-09-26T22:33:36Z <p>We use the approach of logging to a known location locally which is shared. Then it's easy to have a second process pull these logs for later processing (dump to database, collect and archive etc). If the collection process dies, then nothing is really is affected.</p> <p>Make sure you don't have a central point of failure. I've seen examples of this that used a central logging database that all apps depended on and when it went down <em>everything</em> else did too. Not clever.</p> http://stackoverflow.com/questions/140616/is-there-a-nant-task-that-will-display-all-property-name-values/141174#141174 5 Answer by craigb for Is there a NAnt task that will display all property name / values? craigb 2008-09-26T18:36:10Z 2008-09-26T18:36:10Z <p>Try this snippet:</p> <pre><code>&lt;project&gt; &lt;property name="foo" value="bar"/&gt; &lt;property name="fiz" value="buz"/&gt; &lt;script language="C#" prefix="util" &gt; &lt;code&gt; &lt;![CDATA[ public static void ScriptMain(Project project) { foreach (DictionaryEntry entry in project.Properties) { Console.WriteLine("{0}={1}", entry.Key, entry.Value); } } ]]&gt; &lt;/code&gt; &lt;/script&gt; &lt;/project&gt; </code></pre> <p>You can just save and run with nant.</p> <p>And no, there isn't a task or function to do this for you already.</p> http://stackoverflow.com/questions/140490/base-constructor-in-c-which-gets-called-first/140505#140505 19 Answer by craigb for Base constructor in C# - Which gets called first? craigb 2008-09-26T16:20:13Z 2008-09-26T16:20:13Z <p>The base constructor will be called first.</p> <p>try it:</p> <pre><code>public class MyBase { public MyBase() { Console.WriteLine("MyBase"); } } public class MyDerived : MyBase { public MyDerived():base() { Console.WriteLine("MyDerived"); } } </code></pre> http://stackoverflow.com/questions/1382372/update-version-info-with-msbuild-after-binaries-compilation/1382415#1382415 Comment by craigb on Update version info with MSBuild (after binaries compilation) craigb 2009-09-05T06:30:40Z 2009-09-05T06:30:40Z OK, now I'm even more curious... what languages/compilers? Mention of DLLs and EXEs made me assume you were talking about standard .Net development (i.e. C#/VB, Visual Studio etc). If that isn't the case, why did you choose MSBuild? http://stackoverflow.com/questions/232567/best-cocoa-mac-os-x-programming-blogs/233775#233775 Comment by craigb on Best Cocoa/Mac OS X programming blogs? craigb 2008-10-24T15:48:11Z 2008-10-24T15:48:11Z hasn't been updated since 2007 http://stackoverflow.com/questions/232567/best-cocoa-mac-os-x-programming-blogs/232919#232919 Comment by craigb on Best Cocoa/Mac OS X programming blogs? craigb 2008-10-24T14:10:13Z 2008-10-24T14:10:13Z close enough for me :) http://stackoverflow.com/questions/232570/what-are-the-best-cocoa-touch-iphone-programming-blogs/232617#232617 Comment by craigb on What are the best Cocoa-Touch/iPhone programming blogs? craigb 2008-10-24T06:24:50Z 2008-10-24T06:24:50Z three blogs in one answer... i can only give one vote :) http://stackoverflow.com/questions/224467/how-can-i-fail-a-webtest/224472#224472 Comment by craigb on How can I Fail a WebTest? craigb 2008-10-23T01:16:47Z 2008-10-23T01:16:47Z Not according to the dll I'm using. Oucome is a public getter, but there's no public setter. I used reflection to cal the set_Outcome (which is private) but it still has no effect on the test result (i.e. it till does not Fail) http://stackoverflow.com/questions/224467/how-can-i-fail-a-webtest/224472#224472 Comment by craigb on How can I Fail a WebTest? craigb 2008-10-22T14:08:22Z 2008-10-22T14:08:22Z Should have been clearer... I had already tried both of these. (edited question to reflect this) http://stackoverflow.com/questions/224430/xcopy-asp-net-deployment-of-a-subversion-managed-project/224454#224454 Comment by craigb on xcopy ASP.NET deployment of a Subversion-managed project craigb 2008-10-22T04:07:13Z 2008-10-22T04:07:13Z that's a cool reg hack! http://stackoverflow.com/questions/223184/subversion-external-references-binaries-and-msbuild-visual-studio Comment by craigb on Subversion, external references, binaries, and MSBuild/Visual Studio craigb 2008-10-22T04:01:44Z 2008-10-22T04:01:44Z we use a similar scheme for binaries but have never seen the problem you describe. http://stackoverflow.com/questions/168720/questions-when-moving-from-mbunit-to-mstest Comment by craigb on Questions when moving from MbUnit to MsTest craigb 2008-10-22T02:47:55Z 2008-10-22T02:47:55Z Why the hell would you want to move from a good rich test framework to a rather limited one is the real question. http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/141544#141544 Comment by craigb on Objective-C switch using objects? craigb 2008-09-27T00:46:49Z 2008-09-27T00:46:49Z Nice, hadn't thought of that one. Not used to using macros much. http://stackoverflow.com/questions/117632/install-tool-to-create-virtual-directory-on-iis Comment by craigb on Install tool to create virtual directory on IIS craigb 2008-09-22T21:20:00Z 2008-09-22T21:20:00Z IIS6, II7? they have different APIs http://stackoverflow.com/questions/112643/how-can-i-dynamically-create-a-selector-at-runtime-with-objective-c/112668#112668 Comment by craigb on How can I dynamically create a selector at runtime with Objective-C? craigb 2008-09-22T01:33:35Z 2008-09-22T01:33:35Z I need to brush up on my Google-fu. that's exactly what I was (or wasn't as it may be) looking for. http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/110254#110254 Comment by craigb on Objective-C switch using objects? craigb 2008-09-21T19:11:18Z 2008-09-21T19:11:18Z As stated in question, I already found a better way of setting these properties and was just looking for advice on the if-else pattern that i didn't like. http://stackoverflow.com/questions/104339/objective-c-switch-using-objects/110244#110244 Comment by craigb on Objective-C switch using objects? craigb 2008-09-21T19:10:03Z 2008-09-21T19:10:03Z As indicted in the original question i already found a better way to do the setting of properties. I was just looking for advice on any better pattern for dealing with the if-else pattern. http://stackoverflow.com/questions/104583/does-the-iphone-sdk-allow-hardware-access-to-the-dock-connector/104605#104605 Comment by craigb on Does the iPhone SDK allow hardware access to the dock connector? craigb 2008-09-19T19:14:20Z 2008-09-19T19:14:20Z Nice, thanks for the link.