User paulthenerd - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:43:52Z http://stackoverflow.com/feeds/user/39819 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1908201/confused-in-getting-the-managedobjectcontext-from-appdelegate/1908465#1908465 0 Answer by paulthenerd for Confused in getting the ManagedObjectContext from AppDelegate paulthenerd 2009-12-15T16:04:51Z 2009-12-15T16:04:51Z <p>IIRC the Apple examples initialize the Core Data stack in the App Delegate but they actually setup properties on the view controller to reference the ManagedObjectContext and set those on application load - what Apple's docs is referring to as I read it is that you should do something similar rather than trying to load the ManagedObjectContext directly from the App Delegate.</p> <p>If you post some code it will be a lot easier to help you figure out what is going on with your error. The first thing I'd check is that the reference to the ManagedObjectContext in your controller is not nil.</p> http://stackoverflow.com/questions/1898072/nsurl-authentication-when-server-does-not-present-a-challenge/1898221#1898221 2 Answer by paulthenerd for NSURL Authentication when server does not present a challenge paulthenerd 2009-12-13T23:39:20Z 2009-12-13T23:39:20Z <p>You can add the authorization information to the request manually by adding it to the request header like so:</p> <pre><code>NSString *authString = [[[NSString stringWithFormat:@"%@:%@",user, password] dataUsingEncoding:NSUTF8StringEncoding] base64Encoding]; [request setValue:[NSString stringWithFormat:@"Basic %@", authString] forHTTPHeaderField:@"Authorization"]; </code></pre> <p>Where request is your NSMutableURLRequest and user/password are your respective username and password NSString's</p> <p>I've been using this approach with an API from the iphone where the extra challenge is not being initiated by the server.</p> http://stackoverflow.com/questions/1896534/which-version-of-rails-for-a-new-project/1896738#1896738 2 Answer by paulthenerd for Which version of rails for a new project? paulthenerd 2009-12-13T14:52:08Z 2009-12-13T20:29:25Z <p>If this is going to be a production project I would definitely go with 2.3.x and 1.8.7 - they are proven, reliable and will work with the majority of gems and plugins available.</p> <p>On the other hand if the project is more experimental then it may be worth looking at Rails 3, I would not however choose it for a commercial project unless you are experienced enough to deal with the potential compatibility and other issues that <em>may</em> be part of working with it early on.</p> http://stackoverflow.com/questions/1891238/uitableview-section-with-maximum-number-of-rows/1891776#1891776 1 Answer by paulthenerd for UITableView section with maximum number of rows paulthenerd 2009-12-12T00:49:57Z 2009-12-12T00:49:57Z <p>I've run into a similar problem because I provide a placeholder row to act as a guide in getting a user started with a table interaction in one application. The reason it is happening is that the number of rows in the section has to match - as the exception is saying.</p> <p>The way to handle it is simple only call deleteRowsAtIndexPaths in cases where you are <strong>changing</strong> the number of rows in the section.</p> <p>So in your case you are saying I have four rows all with content (presumably stored in an array or some other data structure). I am deleting one of these rows but I am going to be placing a placeholder row there in it's place. So the number of rows in the section for display purposes is actually not changing.</p> <p>What you want to do then is delete the item from your data structure so that when cellForRowAtIndex gets called it will load your placeholder cell properly but you don't actually need to try and remove the row from the tableview.</p> <p>Alternatively if you want to get the highlighting interaction I'd try out what Ian is suggesting by removing and adding the rows in one transaction - I haven't tested that out in this situation though.</p> <p>I have found the user experience to be pretty smooth without the additional animations, but that depends on your app.</p> http://stackoverflow.com/questions/1868831/single-person-working-on-a-web-app-what-platform-to-use/1868852#1868852 0 Answer by paulthenerd for Single person working on a web app. What platform to use? paulthenerd 2009-12-08T18:17:15Z 2009-12-08T18:17:15Z <p>Use the platform which you enjoy working with the most. I've worked on these types of projects and you first and foremost need to have fun with it - if you don't you'll likely never finish it. All the options you have here will work fine for a web app, so just go for it :)</p> http://stackoverflow.com/questions/1844456/storekit-to-return-all-product-ids/1844477#1844477 3 Answer by paulthenerd for StoreKit to return all product IDs paulthenerd 2009-12-04T02:15:32Z 2009-12-04T02:21:56Z <p>You unfortunately have to provide all of the ID's for products you'd like to get information for as far as I could see.</p> <p>One way to handle this is to store your product ID's on a remote server and then to make a request to the server to pull down the current set of ID's when loading the store.</p> <p>That would allow you to add or remove products from the itunes side of things and not have to submit any binary updates to your app.</p> <p>I think you could probably find a happy medium by caching the list of products in the iphone app and then just making a quick request to see if there had been any changes so you wouldn't even have to get the full list each time.</p> <p>This could be done using a simple http API on the server side or even just an xml file you pull down.</p> <p>From the In App purchase Programming Guide </p> <blockquote> <p>Apple recommends you retrieve product identifiers from your server, rather than including them in a property list. This gives you the flexibility to add new products without updating your application.</p> </blockquote> http://stackoverflow.com/questions/1842416/validate-website-ownership-in-rails/1842442#1842442 3 Answer by paulthenerd for Validate website ownership in rails paulthenerd 2009-12-03T19:50:47Z 2009-12-03T19:50:47Z <p>You could confirm it in a manner similar to what google analytics does by having them place some javascript/code on their site that you could use to confirm. Alternatively you could have them create a DNS record that you could check for - both of those would show actual ownership of the site rather than just being part of the domain.</p> http://stackoverflow.com/questions/1840614/why-does-uitablview-cell-remain-highlighted/1840757#1840757 4 Answer by paulthenerd for Why does uitablview cell remain highlighted? paulthenerd 2009-12-03T15:43:00Z 2009-12-03T15:43:00Z <p>In your didSelectRowAtIndexPath you need to call deselectRowAtIndexPath to deselect the cell.</p> <p>So whatever else you are doing in didSelectRowAtIndexPath you just have it call deselectRowAtIndexPath as well.</p> <pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // Do some stuff when the row is selected [tableView deselectRowAtIndexPath:indexPath animated:YES]; } </code></pre> http://stackoverflow.com/questions/1829671/rails-not-executing-javascript-from-respondto-block/1829754#1829754 0 Answer by paulthenerd for Rails not executing javascript from respond_to block paulthenerd 2009-12-01T23:43:58Z 2009-12-01T23:43:58Z <p>How are you calling that action? Are you using an :update option in a remote helper?</p> <p>I've seen it behave this way if you are using a remote helper with an :update option set and then trying to send back a specific replace_html or similar call using rjs on the controller side.</p> http://stackoverflow.com/questions/1817839/i-want-to-integrate-twitter-using-oauth-protocol/1827071#1827071 0 Answer by paulthenerd for i want to integrate twitter using OAuth protocol paulthenerd 2009-12-01T15:52:27Z 2009-12-01T15:52:27Z <p>It's not really clear from your question but since you've tagged it with Objective-C I can tell you that there is a framework for interacting with OAuth as a client called OAuthConsumer which works really well. It provides for all the request signing and token handling that you'll need to support. You can check it out here: <a href="http://code.google.com/p/oauthconsumer/" rel="nofollow">http://code.google.com/p/oauthconsumer/</a></p> http://stackoverflow.com/questions/1775528/grouped-style-setting-not-taking-effect-from-ib-uitableview/1775734#1775734 0 Answer by paulthenerd for Grouped style setting not taking effect from IB, UITableView paulthenerd 2009-11-21T15:12:11Z 2009-11-21T15:12:11Z <p>Does the table view respond to events and get populated with data as you'd expect? - it sounds like the outlets are not connected properly to me. I'd double check the datasource and delegate connections from the tableview to the controller. May be worth deleting the tableview from IB and re-adding it and re-connecting it as well. I've seen IB act a little finicky in the odd case.</p> http://stackoverflow.com/questions/1732111/self-deleting-iphone-app/1732129#1732129 1 Answer by paulthenerd for Self Deleting iPhone app paulthenerd 2009-11-13T21:47:06Z 2009-11-13T21:47:06Z <p>I'm going to go out on a limb here and say you may not want to use the iphone for this type of app. There are intentional limitations to this exact type of action on the iphone and in springboard. If you are doing something so sensitive that it can't fall into unauthorized hands my recommendation would be to use a different and more customizable/controllable platform.</p> http://stackoverflow.com/questions/1715283/tableview-has-nothing/1715344#1715344 3 Answer by paulthenerd for tableview has nothing? paulthenerd 2009-11-11T14:00:08Z 2009-11-11T14:00:08Z <p>There are lots of places you could have gone wrong...and if you post some code you're much more likely to get a solution but some possibilities.</p> <p>Have you also implemented </p> <pre><code>- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView </code></pre> <p>Have you set the tableview's datasource and delegate to your controller? (Either programatically or via interface builder outlets)</p> <p>Does your controller declare the UITable view datasource and delegate protocols in it's header OR subclass UITableViewController?</p> <p>Without you providing more info it's pretty hard to give a solution.</p> http://stackoverflow.com/questions/1671635/sqlite-record-not-correct-on-iphone-simulator/1698546#1698546 0 Answer by paulthenerd for SQLite record not correct on iPhone simulator paulthenerd 2009-11-09T00:47:43Z 2009-11-09T00:47:43Z <p>Where is your sqlite in your project - eg. Is it in your app bundle or are you writing it to the Documents folder for your app?</p> <p>If you are writing it to the Documents folder for your app and running the simulator your file will be located in the Application Support folder for the iPhone Simulator</p> <pre><code>~/Library/Application Support/iPhone Simulator/User/Applications/&lt;application id&gt; </code></pre> <p>Also I'll add a +1 to using Core Data in general - I just attended an Apple iPhone event and there are some significant efficiency and performance benefits to be gained by using Core Data over most of the other sqlite frameworks and especially over directly accessing the sqlite c api. </p> http://stackoverflow.com/questions/1694539/how-to-create-line-chart-in-iphone-application/1694547#1694547 3 Answer by paulthenerd for How to create line chart in iphone application? paulthenerd 2009-11-07T21:52:04Z 2009-11-07T21:52:04Z <p>I've done graphing using some javascript based graphing libraries but this project looks quite good to me I'd have look at this as an option <a href="http://code.google.com/p/s7graphview/" rel="nofollow">s7graphview</a></p> http://stackoverflow.com/questions/1630240/multiple-facebook-accounts-in-single-iphone-app/1674633#1674633 0 Answer by paulthenerd for Multiple facebook accounts in single iPhone app paulthenerd 2009-11-04T15:43:18Z 2009-11-04T15:43:18Z <p>Ya if you used keychain to store their credentials it'd be possible to have them enter their credentials for each account (you'd store them in keychain) and then do the logout/login as necessary. Not the best, but might be all you have open to you.</p> http://stackoverflow.com/questions/1668487/choosing-iphone-sdk-in-latest-xcode-only-3-0-sdks-are-available-but-i-have-2-0/1668591#1668591 0 Answer by paulthenerd for Choosing iPhone SDK in latest Xcode: Only 3.0 SDKs are available, but I have 2.0 on disk paulthenerd 2009-11-03T16:45:44Z 2009-11-03T18:14:12Z <p>Where are you trying to select it? As the base SDK? You should always be linking against the newest SDK version (this is what an Apple engineer told me directly at an iphone dev event) and then set your Deployment Target back as far as you want. You should be able to set you iPhone OS Deployment Target back to the older SDK version.</p> <p>This is because Xcode uses weak linking so it will leave out things from the newer SDK on older versions, you do need to do some conditional checking for specific API's/functions using things like respondsToSelector if you are using functionality that has changed across versions.</p> http://stackoverflow.com/questions/1664177/best-way-to-check-if-the-app-is-running-for-the-first-time-iphone/1664275#1664275 2 Answer by paulthenerd for Best way to check if the APp is running for the first time iphone paulthenerd 2009-11-02T22:58:35Z 2009-11-02T22:58:35Z <p>I like to use NSUserDefaults to store an indication of the the first run.</p> <pre><code>NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; if (![defaults objectForKey:@"firstRun"]) [defaults setObject:[NSDate date] forKey:@"firstRun"]; [[NSUserDefaults standardUserDefaults] synchronize]; </code></pre> <p>You can then test for it later...</p> <pre><code>NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; if([defaults objectForKey:@"firstRun"]) { // do something or not... } </code></pre> http://stackoverflow.com/questions/1659531/method-that-gets-executed-when-the-application-becomes-active/1659549#1659549 3 Answer by paulthenerd for Method that gets executed when the application becomes active paulthenerd 2009-11-02T05:28:00Z 2009-11-02T05:28:00Z <p>The callback methods will be run everytime your app runs - if you are trying to check that those methods are being called using the debug log you won't get any output to the debug log if you stop the debugger and then just launch the app on the simulator since it's not starting a new debugger session in xcode it's just running the app in the simulator.</p> <p>(I'm making a couple of assumption that might be wrong about how you're checking things so correct me if I'm wrong.)</p> http://stackoverflow.com/questions/1656356/something-like-nets-tag-property-for-interface-builder/1656371#1656371 2 Answer by paulthenerd for Something like .NET's "tag" property for Interface Builder paulthenerd 2009-11-01T04:18:11Z 2009-11-01T04:18:11Z <p>In the iPhone SDK all UIView objects have a property also called tag which is an integer value and can basically be used to do what you are intending.</p> <p>I usually define a constant for the tag values I'm going to use for a specific purpose.</p> <p>You can access the tag on the button object:</p> <pre><code>myButton.tag = MYBUTTON_TAG_CONSTANT // button tag constant #define MYBUTTON_TAG_CONSTANT 1 </code></pre> http://stackoverflow.com/questions/1631358/is-there-a-way-to-dynamically-determine-ivars-of-a-class-at-runtime-in-cocoa-co/1631614#1631614 3 Answer by paulthenerd for Is there a way to dynamically determine ivars of a class at runtime in Cocoa / Cocoa Touch? paulthenerd 2009-10-27T15:29:03Z 2009-10-27T15:29:03Z <p>I'm not sure for just ivars but if you have them defined as properties it is possible to access the available properties on a class.</p> <p>I've been using SQLitePersistentObjects for a couple projects and it has some helpful code that gets the properties defined on the class to use when figuring out serialization to and from sqlite.</p> <p>It uses the function class_copyPropertyList to get the available list of properties on a class.</p> <p>More specifically:</p> <pre><code>+(NSDictionary *)propertiesWithEncodedTypes { // DO NOT use a static variable to cache this, it will cause problem with subclasses of classes that are subclasses of SQLitePersistentObject // Recurse up the classes, but stop at NSObject. Each class only reports its own properties, not those inherited from its superclass NSMutableDictionary *theProps; if ([self superclass] != [NSObject class]) theProps = (NSMutableDictionary *)[[self superclass] propertiesWithEncodedTypes]; else theProps = [NSMutableDictionary dictionary]; unsigned int outCount; objc_property_t *propList = class_copyPropertyList([self class], &amp;outCount); int i; // Loop through properties and add declarations for the create for (i=0; i &lt; outCount; i++) { objc_property_t * oneProp = propList + i; NSString *propName = [NSString stringWithUTF8String:property_getName(*oneProp)]; NSString *attrs = [NSString stringWithUTF8String: property_getAttributes(*oneProp)]; NSArray *attrParts = [attrs componentsSeparatedByString:@","]; if (attrParts != nil) { if ([attrParts count] &gt; 0) { NSString *propType = [[attrParts objectAtIndex:0] substringFromIndex:1]; [theProps setObject:propType forKey:propName]; } } } free(propList); return theProps; } </code></pre> <p>This returns a dictionary of the properties - you'll need to do some investigating of the results you get back but you should be able to get what you need if you're using properties.</p> http://stackoverflow.com/questions/1625976/securing-temporary-passwords-sent-through-e-mail-to-users/1626074#1626074 3 Answer by paulthenerd for Securing temporary passwords sent through e-mail to users? paulthenerd 2009-10-26T17:19:26Z 2009-10-26T17:19:26Z <p>I typically use a temporary url based on an invite record on the back end. Essentially you create an invite record and generate a hash based on some information perhaps the users email address, a timestamp and a random value. Store the hash as part of the invite record and then send them a url with the hash as the parameter.</p> <p>When they click the link lookup the invite and validate that it exists and has not been used - then allow them to setup their password and invalidate the invite.</p> <p>It gets rid of the need to send any sort of password and you can set an expiry on your invite records if you want as well.</p> http://stackoverflow.com/questions/1622116/how-to-provide-storekit-content/1622568#1622568 2 Answer by paulthenerd for How to provide storekit content? paulthenerd 2009-10-26T00:10:10Z 2009-10-26T00:10:10Z <p>First you should really go back and review the In App purchase <a href="http://developer.apple.com/iphone/library/documentation/NetworkingInternet/Conceptual/StoreKitGuide/MakingaPurchase/MakingaPurchase.html#//apple%5Fref/doc/uid/TP40008267-CH3-SW1" rel="nofollow">documentation</a> that Apple provides - they outline this in detail and it's useful to understand what is being done on their side.</p> <p>What you are missing is the SKPaymentTransactionObserver - it's your responsibility to implement this observer which you add as an observer of the SKPaymentTransactionQueue. Apple recommends that you add the observer at app launch to the default queue so that it will be able to observe all transactions that take place while your app is running.</p> <p>Essentially you need to write your own class that implements the SKPaymentTransactionObserver protocol. What this class does is observe catch the callbacks from the payment queue when the iTunes store processes the payment and let's you catch the success and failure events.</p> <p>Here is the skeleton for the Payment Observer:</p> <p>PaymentObserver.h</p> <pre><code>#import &lt;StoreKit/StoreKit.h&gt; @interface PaymentObserver : NSObject &lt;SKPaymentTransactionObserver&gt; { } - (void) completeTransaction: (SKPaymentTransaction *)transaction; - (void) restoreTransaction: (SKPaymentTransaction *)transaction; - (void) failedTransaction: (SKPaymentTransaction *)transaction; @end </code></pre> <p>PaymentObserver.m</p> <pre><code>#import "PaymentObserver.h" @implementation PaymentObserver - (void)paymentQueue:(SKPaymentQueue *)queue removedTransactions:(NSArray *)transactions { // handle payment cancellation } - (void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray *)transactions { // handle the payment transaction actions for each state for (SKPaymentTransaction *transaction in transactions) { switch (transaction.transactionState) { case SKPaymentTransactionStatePurchased: [self completeTransaction:transaction]; break; case SKPaymentTransactionStateFailed: [self failedTransaction:transaction]; break; case SKPaymentTransactionStateRestored: [self restoreTransaction:transaction]; default: break; } } } - (void) completeTransaction: (SKPaymentTransaction *)transaction; { // Record the transaction //... // Do whatever you need to do to provide the service/subscription purchased //... // Remove the transaction from the payment queue. [[SKPaymentQueue defaultQueue] finishTransaction: transaction]; } - (void) restoreTransaction: (SKPaymentTransaction *)transaction { // Record the transaction //... // Do whatever you need to do to provide the service/subscription purchased //... [[SKPaymentQueue defaultQueue] finishTransaction: transaction]; } - (void) failedTransaction: (SKPaymentTransaction *)transaction { if (transaction.error.code != SKErrorPaymentCancelled) { // Optionally, display an error here. } [[SKPaymentQueue defaultQueue] finishTransaction: transaction]; } @end </code></pre> <p>Once you have implemented the PaymentObserver you need to add an instance off it to the default payment queue as a transaction observer.</p> <pre><code>// Done at app launch... PaymentObserver *paymentObserver = [[PaymentObserver alloc] init]; [[SKPaymentQueue defaultQueue] addTransactionObserver:paymentObserver]; </code></pre> http://stackoverflow.com/questions/1599725/which-mobile-programming-environment-do-you-recommend-for-a-startup-to-target/1607417#1607417 7 Answer by paulthenerd for Which mobile programming environment do you recommend for a startup to target? paulthenerd 2009-10-22T13:58:25Z 2009-10-22T13:58:25Z <p>I've written and launched two mobile apps on the iphone over the last year and both have had success in economic terms. One app is free and tied to a web service and it has a significant impact on the popularity and number of users for the web service. The second app is a paid app - and I can tell you that it is producing some actual revenue, enough that if I was a solo developer it'd be paying my bills.</p> <p>That said I think that if you're launching a company for mobile products you don't want to put all your eggs in one basket. So either support multiple platforms or aim to have multiple products on your main platform.</p> <p>I think there is big potential in Android but at the moment it is totally unproven as a platform where you can actually make money (please point out some info on this if you have any I am really curious about the economic potential of Android). </p> <p>Blackberry is also interesting since pretty much everyone I know who's under 25 has one, but it is a platform where selling apps doesn't seem to have caught on that well. I've discussed it with some heavy blackberry users and apps are not something they really care that much about. So you'd want to try to find out some numbers regarding Blackberry app sales. </p> <p>In the end it depends on your target market/product.</p> <p>Are you building an enterprise targeted mobile app? - Build for Blackberry first and perhaps iPhone next.</p> <p>Do you want to launch one consumer focused mobile app with a large feature set and perhaps some web service integration? - target a few platforms and make it available to as many users as possible. </p> <p>Are you trying to build a series of small purpose built apps? - Definitely start with iPhone and get some revenue first.</p> <p>My 2 cents.</p> http://stackoverflow.com/questions/1557040/objective-c-best-way-to-access-rest-api-on-your-iphone/1557092#1557092 2 Answer by paulthenerd for Objective-C: Best way to access REST API on your iphone paulthenerd 2009-10-12T21:39:24Z 2009-10-12T21:39:24Z <p>I have a couple of apps using a framework called <a href="http://iphoneonrails.com/" rel="nofollow">Objective Resource</a> which provides a wrapper for accessing remote REST based api's. It is aimed primarily at Ruby on Rails based applications so it's XML/JSON parsing may be tuned to handle some Rails defaults but it is worth looking at. It supports http basic authentication by default.</p> http://stackoverflow.com/questions/1543875/top-margin-on-uitableviewcontroller/1543940#1543940 0 Answer by paulthenerd for Top margin on UITableViewController paulthenerd 2009-10-09T13:56:03Z 2009-10-09T13:56:03Z <p>You can set the frame of the UITableView to an explicit X,Y position by setting the frame property on the view. Or you can change the same property using interface builder depending on whether you've added the tableview via IB or in code.</p> <p>eg.</p> <pre><code>myTable.frame = CGRectMake(0.0, myTable.frame.origin.y + NAV_BAR_HEIGHT, myTable.frame.size.width, myTable.frame.size.height); </code></pre> <p>This will position the table myTable (which is a pointer to the UITableView) below the navigation bar, you may also need to adjust the height of the table accordingly. The height of the nav bar which I am indicating with a constant is 44.0.</p> <p>I typically do this type of view adjustment if it has been necessary in the viewWillAppear of the view controller responsible. It's not common that you'll need to make this type of adjustment so it may be something you can fix by changing the way your views are being setup.</p> <p>Without more details of how your view is setup it's hard to be more specific.</p> http://stackoverflow.com/questions/1379975/is-there-a-way-to-write-a-single-expression-over-multiple-lines-in-haml/1380031#1380031 0 Answer by paulthenerd for Is there a way to write a single expression over multiple lines in haml? paulthenerd 2009-09-04T15:43:24Z 2009-09-04T15:43:24Z <p>In earlier versions of haml there was no way to multi-line a single statement - something which I was frustrated with in the same way you are as it made templates way harder to read in some cases.</p> <p>In theory there is a multi-line <a href="http://haml-lang.com/docs/yardoc/HAML%5FCHANGELOG.md.html#multiline" rel="nofollow">syntax</a> for handling statements with lots of attributes. I have not tried to use it - but it's worth a shot, if that doesn't work then it is likely still the case that you cannot multi-line that type of statement.</p> http://stackoverflow.com/questions/1374368/using-iphone-os-3-0-features-if-available-and-2-1-features-if-not-in-one-execut/1374409#1374409 0 Answer by paulthenerd for Using iPhone OS 3.0 features if available, and 2.1 features if not, in one executable paulthenerd 2009-09-03T16:12:17Z 2009-09-03T16:12:17Z <p>You can test for the current version of the OS at runtime using:</p> <pre><code>float version = [[[UIDevice currentDevice] systemVersion] floatValue]; if (version &gt;= 3.0) </code></pre> <p>Which will let you use certain API calls at runtime if available.</p> <p>This question has some other <a href="http://stackoverflow.com/questions/820142/how-to-target-a-specific-iphone-version">details</a> for how to compile in specific things per API version.</p> http://stackoverflow.com/questions/1374066/subviewtwocontroller-not-declared-obj-c/1374205#1374205 0 Answer by paulthenerd for SubViewTwoController not declared (obj-c) paulthenerd 2009-09-03T15:36:47Z 2009-09-03T15:36:47Z <p>It looks like you just haven't declared the variable it should be:</p> <pre><code>SubViewTwoController *subViewTwoController = [[SubViewTwoController alloc] init]; subViewTwoController.title = @"Subview Two"; [views addObject:[NSDictionary dictionaryWithObjectsAndKeys: @"Subview Two", @"title", subViewTwoController, @"controller", nil]]; [subViewOneController release]; </code></pre> <p>the difference being:</p> <pre><code>SubViewTwoController *subViewTwoController </code></pre> <p>It also looks like the header file for SubViewTwoController is not included in the class, its a bit tough to tell with the limited amount of code you've posted.</p> <p>You can include that header file like so assuming it is defined.</p> <pre><code>#import "SubViewTwoController.h" </code></pre> http://stackoverflow.com/questions/1363635/how-do-you-solve-the-iphone-error-signature-is-valid-but-not-trusted/1374121#1374121 0 Answer by paulthenerd for How do you solve the iPhone error "signature is valid but not trusted"? paulthenerd 2009-09-03T15:27:06Z 2009-09-03T15:27:06Z <p>Troy It looks like the issue is you don't have a keypair that is tied to the provisioning profile installed. It's tough to tell for sure but that is my best guess.</p> <p>If that is the case, I've been working in a similar situation - what you need is to either generate a private key using the iphone development portal under the same account your boss used and then add that new key to the provisioning profile you are building with. OR You can get your boss to export the key he generated when he created the provisioning profile - he can export it from keychain and give it a password that will allow you to install it but protect it from anyone else installing it.</p> http://stackoverflow.com/questions/1908201/confused-in-getting-the-managedobjectcontext-from-appdelegate/1909382#1909382 Comment by paulthenerd on Confused in getting the ManagedObjectContext from AppDelegate paulthenerd 2009-12-15T19:09:48Z 2009-12-15T19:09:48Z Brad I like the singleton approach too I already tend to use a singleton for application state handling in most of my apps anyway - Apple's examples don't make it seem as simple as it can be. http://stackoverflow.com/questions/1848103/spam-detection-in-objective-c/1848143#1848143 Comment by paulthenerd on Spam detection in (objective-) C paulthenerd 2009-12-04T17:11:24Z 2009-12-04T17:11:24Z I'd also look at Akismet - which has worked pretty well for me in the past. Same consideration though for commercial licensing. http://stackoverflow.com/questions/1840614/why-does-uitablview-cell-remain-highlighted/1840757#1840757 Comment by paulthenerd on Why does uitablview cell remain highlighted? paulthenerd 2009-12-03T23:13:21Z 2009-12-03T23:13:21Z @4thSpace how are you calling deselect now? http://stackoverflow.com/questions/1842416/validate-website-ownership-in-rails/1842442#1842442 Comment by paulthenerd on Validate website ownership in rails paulthenerd 2009-12-03T19:57:08Z 2009-12-03T19:57:08Z Well say you generated a hash code for them to use - just have them place it in a hidden element with an id that you tell them to use and then load their page and look for that id. If it's their and contains their hash code then you know they have the ability to modify the page...I'm still thinking this through I'd recommend looking at google analytics they do something similar iirc http://stackoverflow.com/questions/1732111/self-deleting-iphone-app/1732129#1732129 Comment by paulthenerd on Self Deleting iPhone app paulthenerd 2009-11-13T22:10:02Z 2009-11-13T22:10:02Z Ah ok, that will eliminate one aspect of it for sure - you may want to look at some encryption as well if you are using a customized ipod already. http://stackoverflow.com/questions/544463/how-would-you-keep-secret-data-secret-in-an-iphone-application/544598#544598 Comment by paulthenerd on How would you keep secret data secret in an iPhone application? paulthenerd 2009-11-05T20:19:47Z 2009-11-05T20:19:47Z you get my upvote for the use of dragon based security http://stackoverflow.com/questions/1677177/are-there-any-good-iphone-orms/1677199#1677199 Comment by paulthenerd on Are there any GOOD iPhone orms? paulthenerd 2009-11-04T23:23:00Z 2009-11-04T23:23:00Z Ya now that Core Data is available it is the best option by far in terms of performance and efficiency http://stackoverflow.com/questions/1654596/push-different-views-from-a-top-level-table-view-in-iphone-sdk Comment by paulthenerd on Push different views from a top-level table view in iPhone SDK paulthenerd 2009-10-31T14:51:03Z 2009-10-31T14:51:03Z can you can post the crash output you are getting? http://stackoverflow.com/questions/1645495/uitableview-very-slow-scrolling-with-images-from-the-web Comment by paulthenerd on UITableView very slow scrolling with images from the web paulthenerd 2009-10-29T18:12:11Z 2009-10-29T18:12:11Z How are you loading the images in your cellForRowAtIndex and are you reusing the cells? http://stackoverflow.com/questions/1625976/securing-temporary-passwords-sent-through-e-mail-to-users/1626074#1626074 Comment by paulthenerd on Securing temporary passwords sent through e-mail to users? paulthenerd 2009-10-26T18:22:50Z 2009-10-26T18:22:50Z By invite record I mean a database record that would record the invite hash, the user's email address and the timestamps and/or expiry information for the invite http://stackoverflow.com/questions/1567118/format-integer-as-two-places-decimal Comment by paulthenerd on Format Integer as Two Places Decimal paulthenerd 2009-10-14T15:38:55Z 2009-10-14T15:38:55Z Any reason you don't just divide by 100 before displaying? http://stackoverflow.com/questions/349711/ruby-on-rails-state-machines/349898#349898 Comment by paulthenerd on ruby on rails state machines paulthenerd 2009-10-13T16:57:09Z 2009-10-13T16:57:09Z +1 for aasm, I've used it on many projects and it has worked extremely well http://stackoverflow.com/questions/1552035/mapping-rails-code-to-sql-statements Comment by paulthenerd on Mapping Rails code to SQL statements paulthenerd 2009-10-11T23:29:18Z 2009-10-11T23:29:18Z If you post some more details about the code or open source project that will make it easier to help http://stackoverflow.com/questions/1535711/iphone-app-crashing-with-poor-internet-connection Comment by paulthenerd on iPhone - app crashing with poor internet connection paulthenerd 2009-10-08T16:58:39Z 2009-10-08T16:58:39Z could you include the crash output? http://stackoverflow.com/questions/773843/iphone-uiwebview-how-to-force-a-numeric-keyboard-is-it-possible/1505805#1505805 Comment by paulthenerd on iPhone UIWebview: How to force a numeric keyboard? Is it possible? paulthenerd 2009-10-05T19:01:04Z 2009-10-05T19:01:04Z thankyou chris...was trying to find a way to do this for ages!