User bpapa - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:28:51Z http://stackoverflow.com/feeds/user/543 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1932210/viewing-ad-hoc-crash-reports-from-an-iphone 0 Viewing Ad-Hoc crash reports from an iPhone bpapa 2009-12-19T06:50:22Z 2009-12-19T08:48:46Z <p>I'm doing some beta testing. I've got a crash and trying to figure it out. If I connect the iPhone, I can see the Crash Report in the XCode organizer. So I see this (my app is called Lineskipper):</p> <pre><code>Thread 0 Crashed: 0 libobjc.A.dylib 0x323fe6f4 0x323fc000 + 9972 1 UIKit 0x32ba205e 0x32b60000 + 270430 2 UIKit 0x32ba1ffe 0x32b60000 + 270334 3 UIKit 0x32ba1fd0 0x32b60000 + 270288 4 UIKit 0x32ba1d2a 0x32b60000 + 269610 5 UIKit 0x32ba263e 0x32b60000 + 271934 6 UIKit 0x32ba1656 0x32b60000 + 267862 7 UIKit 0x32ba1032 0x32b60000 + 266290 8 UIKit 0x32b9d928 0x32b60000 + 252200 9 UIKit 0x32b9d3a0 0x32b60000 + 250784 10 GraphicsServices 0x32913b72 0x3290f000 + 19314 11 CoreFoundation 0x32567c26 0x32511000 + 355366 12 CoreFoundation 0x32567356 0x32511000 + 353110 13 GraphicsServices 0x32912cb8 0x3290f000 + 15544 14 GraphicsServices 0x32912d64 0x3290f000 + 15716 15 UIKit 0x32b62768 0x32b60000 + 10088 16 UIKit 0x32b6146c 0x32b60000 + 5228 17 LineSkipper 0x000022e0 0x1000 + 4832 18 LineSkipper 0x0000229c 0x1000 + 4764 </code></pre> <p>Not particularly helpful. From what I understand, I need to symbolize. So I read this little nugget of wisdom in <a href="http://developer.apple.com/iphone/library/technotes/tn2008/tn2151.html#SYMBOLICATION" rel="nofollow">Apple TN2151</a></p> <blockquote> <p>Given a crash report, the matching binary, and its .dSYM file, symbolication is relatively easy. The Xcode Organizer window has a tab for crash reports of the currently selected device. You can view externally received crash reports in this tab - just place them in the appropriate directory. This is the same as the Mac OS X directory described in the first section. It doesn't matter which device you have tethered, but the directory in which you place the crash report must be the directory for the tethered and selected device.</p> <p>It is not necessary to place the binary and .dSYM file in any particular location. Xcode uses Spotlight and the UUID to locate the correct files. It is necessary, though, that both files be in the same directory and that this directory is one that is indexed by Spotlight. Anywhere in your home directory should be fine.</p> </blockquote> <p>So basically, I don't get it. I drag the crash report out of the organizer, put it in the directory Apple references here (~/Library/Logs/CrashReporter/MobileDevice/) and then... I double-click it. It opens up the console app, and I see exactly what I saw in the Organizer. </p> <p>So did I do something wrong? How do I know I did it? How do I view the console file so that I know exactly where the crash was?</p> http://stackoverflow.com/questions/1927960/a-question-related-to-apple-push-notification-service/1928522#1928522 0 Answer by bpapa for a question related to apple push notification service bpapa 2009-12-18T14:30:44Z 2009-12-18T14:30:44Z <p>There are two situations when a push notification arrives. Either your app is already running and it arrives, or it's not running and it arrives. If it's not running, the O/S has sole control of handling the push notification, and you won't be able to do anything from your app unless the user proceeds.</p> <p>If your app is already running, you can pretty much do whatever the heck you want. Simply provide an implementation for <a href="http://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UIApplicationDelegate%5FProtocol/Reference/Reference.html" rel="nofollow">UIApplicationDelegate</a>'s <code>application:didReceiveRemoteNotification:</code> method.</p> <p>If your app isn't running, the O/S is handling and there is very little that you can learn from arrival. If the user simply dismisses the message, none of your code anywhere will be run. If the user accepts the message, then your application is launched. You can get examine the contents of the launchOptions parameter to <a href="http://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UIApplicationDelegate%5FProtocol/Reference/Reference.html#//apple%5Fref/doc/uid/TP40006786-CH3-SW18" rel="nofollow">application:didFinishLaunchingWithOptions:</a> to see what happened.</p> http://stackoverflow.com/questions/1925565/sending-user-to-view-from-search-results/1925676#1925676 1 Answer by bpapa for Sending user to view from search results bpapa 2009-12-18T01:07:45Z 2009-12-18T01:07:45Z <p>I don't know if it'd get rejected, but it sounds weird as I've never seen it in an app before. Why not just put the search bar in the first row of the table as in the iPod app?</p> <p>You probably could also mimic the iPod behavior when "backing out" of Search results.</p> <p>But yeah, this isn't really programming related.</p> http://stackoverflow.com/questions/1915855/how-can-i-hide-the-uitableview-that-uisearchbar-created/1916888#1916888 0 Answer by bpapa for How can I hide the UITableView that UISearchBar created? bpapa 2009-12-16T19:01:21Z 2009-12-16T19:01:21Z <p>Why don't you just remove the table view from the View Hierarchy?</p> <pre><code>- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [tableView deselectRowAtIndexPath:indexPath animated:NO]; // update your model based on the current selection [tableView removeFromSuperview]; } </code></pre> http://stackoverflow.com/questions/1898022/playing-built-in-sounds-on-the-iphone/1898332#1898332 1 Answer by bpapa for Playing built in sounds on the iPhone bpapa 2009-12-14T00:18:20Z 2009-12-14T00:18:20Z <p>You'd have to find the audio file and play it from your app. There's no SDK hook to make the notification sound play.</p> http://stackoverflow.com/questions/1896536/is-there-a-good-explanation-about-how-iphone-os-works/1896903#1896903 1 Answer by bpapa for Is there a good explanation about how iPhone OS works? bpapa 2009-12-13T16:03:17Z 2009-12-13T16:03:17Z <p>There's a wealth of info in the <a href="http://developer.apple.com/iphone/" rel="nofollow">iPhone developer center</a></p> http://stackoverflow.com/questions/1641697/google-app-engine-jdo-and-equals-hashcode 2 Google App Engine, JDO, and equals/hashCode bpapa 2009-10-29T05:01:20Z 2009-12-13T03:25:48Z <p>I've got an app in Google App Engine that was working fine. I realized that one on of my JDO-enhanced objects that I forgot to implement equals and hashCode (I need to use the object in a set). So I did. I didn't really do anything special in these implementations, in fact I just used Eclipse to generate them. Like so:</p> <pre><code>@PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Long id; @Persistent private String appleId; @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((appleId == null) ? 0 : appleId.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; User other = (User) obj; if (appleId == null) { if (other.appleId != null) return false; } else if (!appleId.equals(other.appleId)) return false; return true; } </code></pre> <p>So now, when I try to hit any URLs in the app, this exception gets thrown:</p> <blockquote> <p>/addUser javax.jdo.JDOUserException: Persistent class "Class com.bpapa.myapp.domain.User does not seem to have been enhanced. You may want to rerun the enhancer and check for errors in the output." has no table in the database, but the operation requires it. Please check the specification of the MetaData for this class. at org.datanucleus.jdo.NucleusJDOHelper.getJDOExceptionForNucleusException(NucleusJDOHelper.java:427) at org.datanucleus.jdo.JDOQuery.execute(JDOQuery.java:249) at com.bpapa.myapp.servlet.AddUserServlet.doPost(AddUserServlet.java:34)</p> </blockquote> <p>Any ideas on what I did wrong? </p> http://stackoverflow.com/questions/1568433/is-there-an-easier-way-to-add-properties-to-a-class-in-xcode 1 Is there an easier way to add properties to a class in XCode? bpapa 2009-10-14T19:23:55Z 2009-12-12T01:00:01Z <p>I'm getting a bit more seasoned with my iPhone development but I still don't know everything. One thing that bugs the hell out of me is having to add properties to a class, because there are four steps involved:</p> <ol> <li>Add a class member to the Header file</li> <li>Add the property definition to the Header file</li> <li>Add a synthesize declaration to the implementation file</li> <li>Add a release statement to the dealloc method in the implementation file</li> </ol> <p>Is there any easier way to do it? A hidden feature of XCode I don't know about? A tool of some kind maybe?</p> http://stackoverflow.com/questions/1890943/uisearchbar-with-controller-in-a-normal-uiview/1891029#1891029 0 Answer by bpapa for UISearchBar with Controller in a normal UIView? bpapa 2009-12-11T21:38:43Z 2009-12-11T21:56:49Z <p>For one thing, if your Controller class is extending from UITableViewController, you can't have a search bar in it if you're using Interface Builder. Instead, extend from UIViewController and conform to the Table Data Source and Delegate protocols on your own. </p> <p>But yeah, for that answer to be a good one for you, you're going to have to add some code or something to your question.</p> http://stackoverflow.com/questions/1886158/how-do-i-translate-parabolically 0 How do I translate parabolically? bpapa 2009-12-11T06:18:01Z 2009-12-11T13:30:07Z <p>I'm working on an iPhone app with some simple animation. </p> <p>I have a view I want to translate, but not along a line. I want to translate it parabolically. Imagine that I am animating a car moving along a curved road.</p> <p>I know I can set the transform properly to an instance of CGAffineTransform</p> <p>Problem is, I have no idea how to create the transform. I know how to scale, translate, etc. but how do I translate parabolically? Is it even possible?</p> http://stackoverflow.com/questions/1883231/userdefaults-keyedarchiver-frustrations/1883349#1883349 0 Answer by bpapa for UserDefaults/KeyedArchiver Frustrations bpapa 2009-12-10T19:25:02Z 2009-12-10T19:25:02Z <p>I'm not sure if this will fix your problem, but you don't have to pull the array out of Defaults as NSData. Check the <a href="http://developer.apple.com/Mac/library/documentation/Cocoa/Reference/Foundation/Classes/NSUserDefaults%5FClass/Reference/Reference.html" rel="nofollow">NSUserDefaults reference</a> and you'll see that Arrays are valid default objects.</p> http://stackoverflow.com/questions/1883278/simple-q-about-uipickerview-properties/1883320#1883320 0 Answer by bpapa for Simple Q about UIPickerView properties bpapa 2009-12-10T19:20:50Z 2009-12-10T19:20:50Z <p><a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIPickerView%5FClass/Reference/UIPickerView.html#//apple%5Fref/doc/uid/TP40006842-CH3-SW7" rel="nofollow">selectedRowInComponent:</a></p> <p>You probably missed it b/c it isn't a property.</p> http://stackoverflow.com/questions/1879755/starting-ichat-session-in-iphone-from-web-app/1880853#1880853 0 Answer by bpapa for starting iChat session in iPhone from web app bpapa 2009-12-10T13:03:29Z 2009-12-10T13:03:29Z <p>I'm a little confused by what you want to do - the user fills out a form on a web site and then they are put into a "chat room" on their iPhone?</p> <p>This is possible. However all of them require that the user has already installed your app, so it may be a hurdle to what you are trying to do.</p> <p>However if it's using a pre-existing chat service (such as AIM), you may already be OK if the user already has a chat client installed on their iPhone. You could launch the app using custom urls or push notifications - however, this is assuming that the app developer has enabled such hooks, and if so if they are published.</p> <p>If you want to go with your own client, if the user is filling out the form on the iPhone, then on submission you could redirect them to a custom url for your application. From mobile Safari, this will directly launch your app. Note that the user must already have the app installed for this to work, or else they'll see an error, and it won't be a particularly user-friendly one.</p> <p>Another way, if the user is filling out the form on their computer, is via push notification. Again, they must first have the app installed. They would receive a notification that, on acceptance, launches your app. </p> <p>The final way, if the user is filling out the form on their computer, is that they would have to download your app first and run it, so that it could communicate with a desktop client of yours via network services.</p> http://stackoverflow.com/questions/1876912/how-to-make-a-view-outlet-show-up-in-a-viewcontroller-nib/1876979#1876979 0 Answer by bpapa for How to make a "view" Outlet show up in a ViewController nib? bpapa 2009-12-09T21:21:39Z 2009-12-09T21:21:39Z <p>In the "Document" window (cmnd + 0) - control + click on file's owner, a weird looking line thing will show up. drag the mouse over to your view and release. a little drop down will come up from which you can set the view to the File's Owner View outlet.</p> http://stackoverflow.com/questions/1870147/iphone-web-app-reurn-to-app-after-call/1870162#1870162 3 Answer by bpapa for IPhone Web App reurn to app after call bpapa 2009-12-08T22:02:46Z 2009-12-08T22:02:46Z <p>nope, they'd have to open Safari up themselves while on the call.</p> http://stackoverflow.com/questions/1869943/customizing-uiimagepickercontroller-under-iphone-os-3-0/1870132#1870132 0 Answer by bpapa for Customizing UIImagePickerController under iPhone OS 3.0? bpapa 2009-12-08T21:57:15Z 2009-12-08T21:57:15Z <p>I haven't heard of Apple rejecting apps for hacking the view hierarchy but they advise against relying on such undocumented behavior. </p> <p>Consider this - you're using the camera, so you're on the iPhone and not the iPod Touch. Since iPhone software updates are free, I would imagine that the overwhelming majority of people would have upgraded to 3.1. And if they didn't, perhaps they are the type of user that never would have purchased your app anyway.</p> http://stackoverflow.com/questions/1869940/what-is-the-easiest-way-to-make-a-uialertview-thats-tinted-of-a-different-color/1870053#1870053 4 Answer by bpapa for What is the easiest way to make a UIAlertView that's tinted of a different color? bpapa 2009-12-08T21:43:09Z 2009-12-08T21:43:09Z <p>The fact that there are no API hooks to do this should be a red flag - you shouldn't do it. It's not using Private APIs (which will get you a rejection), but it's leveraging undocumented behavior, which Apple advises against. In fact, last week at the iPhone tech talk I was specifically warned by an Apple Dev Evangelist to not to do stuff like this because it will break in the future.</p> <p>If you really want to do your own thing when it comes to UIAlertViews, you should create your own view and present it via a Modal View Controller.</p> http://stackoverflow.com/questions/1864479/crash-logs-generated-by-iphone-simulator/1864495#1864495 2 Answer by bpapa for Crash logs generated by iPhone Simulator? bpapa 2009-12-08T04:03:46Z 2009-12-08T04:28:23Z <p>I am pretty sure that you can see this in the OS X Console app located in Utilities. If I'm wrong though, be sure to vote me the heck down so I delete this.</p> http://stackoverflow.com/questions/1864533/how-to-repro-users-experience/1864575#1864575 1 Answer by bpapa for How to repro user's experience? bpapa 2009-12-08T04:25:05Z 2009-12-08T04:25:05Z <p>Did you ask them for their <a href="http://developer.apple.com/iphone/library/technotes/tn2008/tn2151.html#ACQUIRING%5FCRASH%5FREPORTS" rel="nofollow">crash reports?</a></p> http://stackoverflow.com/questions/1864552/what-about-this-custom-uialertview/1864564#1864564 2 Answer by bpapa for What about this custom uialertview? bpapa 2009-12-08T04:22:54Z 2009-12-08T04:22:54Z <p>I don't know if Apple will reject an app for accessing undocumented subviews, but they certainly recommend against it. In fact, when I was at the iPhone tech talk last week a developer evangelist specifically said not to do this because the implementations will change and your app will break.</p> http://stackoverflow.com/questions/1862627/iphone-multiple-view-screen-management/1862677#1862677 0 Answer by bpapa for iPhone: Multiple View (Screen) Management? bpapa 2009-12-07T20:26:49Z 2009-12-07T20:26:49Z <p>You can always hide the navigation bar using <code>setNavigationBarHidden:animated:</code></p> <p>Other than that it depends on what type of app you are building. Yours sounds like something that could use a Tab Bar, although that doesn't solve your problem of taking up screen space. </p> <p>XCode's templates offer another way to do it - try looking at a new project that is a "Utility" app. It shows how you can seamlessly switch between a couple of different screens.</p> http://stackoverflow.com/questions/1861171/how-should-we-be-obtaining-user-permission-for-our-server-to-post-tweets-to-twitt/1862550#1862550 1 Answer by bpapa for How should we be obtaining user permission for our server to post tweets to Twitter, using OAuth, from the iPhone? bpapa 2009-12-07T20:08:23Z 2009-12-07T20:08:23Z <p>I'm doing the same thing with the Foursquare API which also uses OAuth. I'm simply having the user authorize my app on their iPhone, then passing the user-specific OAuth tokens to my server. On the server I'm persisting the tokens related to iPhone device IDs. Later, the server is what actually talks to Foursquare to do updates.</p> <p>I don't see why this wouldn't work with Twitter, however unless you have a really good reason to do it on the server, you should just do it from the user's iPhone. Adding another system in is always something you want to avoid.</p> http://stackoverflow.com/questions/1861571/does-iphone-provide-any-api-for-inserting-menu-selections-into-e-mail-sms-and-ad/1862518#1862518 0 Answer by bpapa for Does iPhone provide any API for inserting menu selections into e-mail, SMS and Addressbook context menus? bpapa 2009-12-07T20:03:18Z 2009-12-07T20:03:18Z <p>No, Apple doesn't provide these kinds of hooks. However there are some tricks I've seen - one example is what Twitterific does to tweet pages that you are viewing in Safari, via Bookmarklet which uses a Custom URL to launch Twitterific. </p> <p>Perhaps you can do something similar by having a text containing a custom URL. I've never tried this but it's worth experimenting with.</p> http://stackoverflow.com/questions/1849108/initialize-uipickerview/1858128#1858128 0 Answer by bpapa for Initialize UIPickerView bpapa 2009-12-07T06:09:29Z 2009-12-07T13:04:29Z <p>For your UISegmentedControl, you'll need to register target-action methods. For example:</p> <pre><code>[segmentedControl addTarget:self action:@selector(updatePicker:) forControlEvents:UIControlEventValueChanged]; </code></pre> <p>Inside of updatePicker, set a variable that corresponds to whatever you want to show in your picker. Then, to your picker instance (you should only have one instance of this class), send the reloadAllComponents message. This will update the picker by querying the delegate for new data. In your delegate (which can probably all be the same class), you'll want to check the value of the variable you set in updatePicker to determine what data to return to the picker.</p> http://stackoverflow.com/questions/1857942/displaying-topic-specific-tweets-in-twitter/1858073#1858073 1 Answer by bpapa for Displaying topic specific tweets in Twitter bpapa 2009-12-07T05:55:07Z 2009-12-07T05:55:07Z <p>Put a Hash Tag in the users tweets, such as #recipeappname. Then display tweets that only contain that Hash Tag.</p> http://stackoverflow.com/questions/1848485/iphone-provisioning-profile-expiring-every-2-months/1848917#1848917 2 Answer by bpapa for IPHONE: provisioning profile expiring every 2 months? bpapa 2009-12-04T18:47:29Z 2009-12-04T18:47:29Z <p>Provisioning Profiles have shorter lifetimes now, yes. </p> <p>I don't think Apple is insane, they probably have a good reason for it. Does it jive with what you want out of life? It appears not, but I would think that they have a legitimate reason for wanting to change the limitations and it is not because of a lack of sanity. Besides, Apple would have to be collectively nuts and I don't think that that is the case or even really possible.</p> <p>It barely takes a moment to renew an expired one, and then each developer on your team has to update as well - and that also barely takes a moment. </p> <p>Most iPhone app dev cycles probably hover around the 2 month range anyway so this shouldn't be a big deal to most. </p> <p>So like the guy in that PS3 commercial - gonna file this one under not an issue.</p> http://stackoverflow.com/questions/1841824/force-application-to-terminate-in-iphone/1842075#1842075 2 Answer by bpapa for force application to terminate in iPhone bpapa 2009-12-03T18:52:48Z 2009-12-03T18:52:48Z <p>You shouldn't do this. Take a look at "Stopping" in <a href="http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/MobileHIG/HandleTasks/HandleTasks.html#//apple%5Fref/doc/uid/TP40006556-CH16-SW3" rel="nofollow">the Human Interface Guidelines</a> as you could possibly fail for submitting an App that does this, or at the very least provide for a strange user experience.</p> <p>The link also shows the correct way to handle this, as in the iTunes Music Store app.</p> http://stackoverflow.com/questions/1837730/pushviewcontroller-now-crashes/1837856#1837856 0 Answer by bpapa for PushViewController now crashes bpapa 2009-12-03T05:33:37Z 2009-12-03T05:33:37Z <p>If you think you've screwed up in IB, look at the Connections Inspector (cmnd + 2) for each element. </p> http://stackoverflow.com/questions/1836643/app-quits-on-launch/1836879#1836879 1 Answer by bpapa for app quits on launch bpapa 2009-12-03T00:28:27Z 2009-12-03T00:28:27Z <p>Hook up your device to a machine running XCode, then view the Crash Logs in the Organizer. </p> http://stackoverflow.com/questions/1836623/is-there-any-way-to-make-synchronise-our-application-to-another-app-in-iphone/1836641#1836641 1 Answer by bpapa for is there any way to make synchronise our application to another app in iphone ? bpapa 2009-12-02T23:33:57Z 2009-12-02T23:33:57Z <p>Yes, you can do it by using a custom URL scheme as you ask in your question. Code samples are <a href="http://developer.apple.com/iPhone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/ApplicationEnvironment/ApplicationEnvironment.html#//apple%5Fref/doc/uid/TP40007072-CH7-SW26" rel="nofollow">in Apple's doc</a>. This is the only way to do it.</p> http://stackoverflow.com/questions/1925565/sending-user-to-view-from-search-results/1925676#1925676 Comment by bpapa on Sending user to view from search results bpapa 2009-12-18T18:14:48Z 2009-12-18T18:14:48Z I haven't tried this myself, but my guess is to put the Search in the first row but then scroll the table view down to the 2nd in the viewWillAppear method. http://stackoverflow.com/questions/1923321/how-do-i-install-iphone2-0-sdk-on-snow-leopard/1923760#1923760 Comment by bpapa on How do I install iPhone2.0 SDK on snow leopard? bpapa 2009-12-17T19:36:46Z 2009-12-17T19:36:46Z Agreed - the type of person who isn't on 3 isn't the type to spend much money on apps. http://stackoverflow.com/questions/1923720/problems-trying-to-override-methods-in-objective-c-iphone Comment by bpapa on Problems trying to override methods in Objective-C (iPhone) bpapa 2009-12-17T19:34:00Z 2009-12-17T19:34:00Z From personal experience, I would strongly recommend against extending UITableViewController (or any of the similarly provided classes) to create a reusable extension point. You have no idea what's going on in Apple's original implementation and it's only going to lead to a bag of hurt later. Instead, put common behavior into a category. http://stackoverflow.com/questions/1914429/most-important-documentation-in-the-iphone-dev-center Comment by bpapa on Most important documentation in the Iphone Dev Center bpapa 2009-12-16T19:04:15Z 2009-12-16T19:04:15Z The most important ones are the ones most related to what you are doing. http://stackoverflow.com/questions/1912118/didselectrowatindexpath-not-working-for-me-iphone-sdk-3 Comment by bpapa on -didSelectRowAtIndexPath not working for me. iPhone SDK 3 bpapa 2009-12-16T04:27:37Z 2009-12-16T04:27:37Z Looks fine to me, although getting the app delegate and getting the navigation Controller from there is a bit weird and may be the problem (I'd have to see more code to know for sure). You probably can get away with [self.navigationController pushViewController:...] http://stackoverflow.com/questions/1907872/how-to-send-a-push-notification-every-x-minutes/1908318#1908318 Comment by bpapa on How to send a push Notification every x minutes? bpapa 2009-12-15T18:39:06Z 2009-12-15T18:39:06Z There's a very detailed explanation on how to do it in Apple's official doc, try it first and then come back and ask question as needed - <a href="http://developer.apple.com/IPhone/library/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008194-CH1-SW1" rel="nofollow">developer.apple.com/IPhone/library/&hellip;</a> http://stackoverflow.com/questions/1907872/how-to-send-a-push-notification-every-x-minutes Comment by bpapa on How to send a push Notification every x minutes? bpapa 2009-12-15T14:56:20Z 2009-12-15T14:56:20Z I can't even put this answer due to minimum characters required in the &quot;answer&quot; field - yes. http://stackoverflow.com/questions/1902450/how-much-time-does-including-hmac-sha1-encryption-in-your-iphone-app-add-to-the-a Comment by bpapa on How much time does including HMAC-SHA1 encryption in your iPhone app add to the App Store approval process length? bpapa 2009-12-14T18:10:29Z 2009-12-14T18:10:29Z I'm about to submit an app that uses it, so sadly I can't tell you yet. However I can tell you that during the app submission process Apple asks if your app uses any encryption. So I would say that yes, they do look at it and adds some time to the approval process. http://stackoverflow.com/questions/1901410/adding-logo-for-iphone-app Comment by bpapa on Adding logo for iPhone app bpapa 2009-12-14T15:49:27Z 2009-12-14T15:49:27Z Keep in mind that Apple specifically recommends to not use Splash Screens at app launch. Instead, you should have a Launch Image which looks like a bare-bones version of your UI. This helps gives the user the impression that your application is snappy to launch. Read the Human Interface Guidelines for more on this. http://stackoverflow.com/questions/1896970/how-to-include-a-third-option-for-a-drill-down-table-view Comment by bpapa on How to include a third option for a drill down table view? bpapa 2009-12-13T16:59:34Z 2009-12-13T16:59:34Z Gonna need more info, for example what the heck is the setContent method of View Controller? http://stackoverflow.com/questions/1879755/starting-ichat-session-in-iphone-from-web-app/1880853#1880853 Comment by bpapa on starting iChat session in iPhone from web app bpapa 2009-12-12T22:35:49Z 2009-12-12T22:35:49Z It seems possible that they would do that. A lot of people are guessing that the next iPhone will have a front-facing camera which would make a true port of iChat a natural first-party app. But it's anybody's guess, really... http://stackoverflow.com/questions/1890943/uisearchbar-with-controller-in-a-normal-uiview/1891029#1891029 Comment by bpapa on UISearchBar with Controller in a normal UIView? bpapa 2009-12-12T06:18:20Z 2009-12-12T06:18:20Z You should only have one view controller per screen according to Apple's guidelines. http://stackoverflow.com/questions/1889485/monotouch-comments-reviews Comment by bpapa on Monotouch comments/reviews? bpapa 2009-12-11T17:59:54Z 2009-12-11T17:59:54Z There are like 100 &quot;should I use Monotouch?&quot; questions here and they just lead to drama. Voting to close. http://stackoverflow.com/questions/1886158/how-do-i-translate-parabolically/1886216#1886216 Comment by bpapa on How do I translate parabolically? bpapa 2009-12-11T06:40:13Z 2009-12-11T06:40:13Z OK this sounds like a massive ass pain. I think what I'm going to try and do instead is combine a rotation and a translate, inspired by your answer here. Damn, I wish I just paid a little bit more attention 10 years ago in that Linear Algebra class... http://stackoverflow.com/questions/1886158/how-do-i-translate-parabolically/1886164#1886164 Comment by bpapa on How do I translate parabolically? bpapa 2009-12-11T06:28:48Z 2009-12-11T06:28:48Z how does this translate into a Matrix?