User bpapa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T13:28:51Zhttp://stackoverflow.com/feeds/user/543http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1932210/viewing-ad-hoc-crash-reports-from-an-iphone0Viewing Ad-Hoc crash reports from an iPhonebpapa2009-12-19T06:50:22Z2009-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#19285220Answer by bpapa for a question related to apple push notification servicebpapa2009-12-18T14:30:44Z2009-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#19256761Answer by bpapa for Sending user to view from search resultsbpapa2009-12-18T01:07:45Z2009-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#19168880Answer by bpapa for How can I hide the UITableView that UISearchBar created?bpapa2009-12-16T19:01:21Z2009-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#18983321Answer by bpapa for Playing built in sounds on the iPhonebpapa2009-12-14T00:18:20Z2009-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#18969031Answer by bpapa for Is there a good explanation about how iPhone OS works?bpapa2009-12-13T16:03:17Z2009-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-hashcode2Google App Engine, JDO, and equals/hashCodebpapa2009-10-29T05:01:20Z2009-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-xcode1Is there an easier way to add properties to a class in XCode?bpapa2009-10-14T19:23:55Z2009-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#18910290Answer by bpapa for UISearchBar with Controller in a normal UIView?bpapa2009-12-11T21:38:43Z2009-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-parabolically0How do I translate parabolically?bpapa2009-12-11T06:18:01Z2009-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#18833490Answer by bpapa for UserDefaults/KeyedArchiver Frustrationsbpapa2009-12-10T19:25:02Z2009-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#18833200Answer by bpapa for Simple Q about UIPickerView propertiesbpapa2009-12-10T19:20:50Z2009-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#18808530Answer by bpapa for starting iChat session in iPhone from web appbpapa2009-12-10T13:03:29Z2009-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#18769790Answer by bpapa for How to make a "view" Outlet show up in a ViewController nib?bpapa2009-12-09T21:21:39Z2009-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#18701623Answer by bpapa for IPhone Web App reurn to app after callbpapa2009-12-08T22:02:46Z2009-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#18701320Answer by bpapa for Customizing UIImagePickerController under iPhone OS 3.0?bpapa2009-12-08T21:57:15Z2009-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#18700534Answer by bpapa for What is the easiest way to make a UIAlertView that's tinted of a different color?bpapa2009-12-08T21:43:09Z2009-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#18644952Answer by bpapa for Crash logs generated by iPhone Simulator?bpapa2009-12-08T04:03:46Z2009-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#18645751Answer by bpapa for How to repro user's experience?bpapa2009-12-08T04:25:05Z2009-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#18645642Answer by bpapa for What about this custom uialertview?bpapa2009-12-08T04:22:54Z2009-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#18626770Answer by bpapa for iPhone: Multiple View (Screen) Management?bpapa2009-12-07T20:26:49Z2009-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#18625501Answer by bpapa for How should we be obtaining user permission for our server to post tweets to Twitter, using OAuth, from the iPhone?bpapa2009-12-07T20:08:23Z2009-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#18625180Answer by bpapa for Does iPhone provide any API for inserting menu selections into e-mail, SMS and Addressbook context menus?bpapa2009-12-07T20:03:18Z2009-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#18581280Answer by bpapa for Initialize UIPickerViewbpapa2009-12-07T06:09:29Z2009-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#18580731Answer by bpapa for Displaying topic specific tweets in Twitterbpapa2009-12-07T05:55:07Z2009-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#18489172Answer by bpapa for IPHONE: provisioning profile expiring every 2 months? bpapa2009-12-04T18:47:29Z2009-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#18420752Answer by bpapa for force application to terminate in iPhonebpapa2009-12-03T18:52:48Z2009-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#18378560Answer by bpapa for PushViewController now crashesbpapa2009-12-03T05:33:37Z2009-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#18368791Answer by bpapa for app quits on launchbpapa2009-12-03T00:28:27Z2009-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#18366411Answer by bpapa for is there any way to make synchronise our application to another app in iphone ?bpapa2009-12-02T23:33:57Z2009-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#1925676Comment by bpapa on Sending user to view from search resultsbpapa2009-12-18T18:14:48Z2009-12-18T18:14:48ZI 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#1923760Comment by bpapa on How do I install iPhone2.0 SDK on snow leopard?bpapa2009-12-17T19:36:46Z2009-12-17T19:36:46ZAgreed - 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-iphoneComment by bpapa on Problems trying to override methods in Objective-C (iPhone)bpapa2009-12-17T19:34:00Z2009-12-17T19:34:00ZFrom 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-centerComment by bpapa on Most important documentation in the Iphone Dev Centerbpapa2009-12-16T19:04:15Z2009-12-16T19:04:15ZThe 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-3Comment by bpapa on -didSelectRowAtIndexPath not working for me. iPhone SDK 3bpapa2009-12-16T04:27:37Z2009-12-16T04:27:37ZLooks 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#1908318Comment by bpapa on How to send a push Notification every x minutes?bpapa2009-12-15T18:39:06Z2009-12-15T18:39:06ZThere'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/…</a>http://stackoverflow.com/questions/1907872/how-to-send-a-push-notification-every-x-minutesComment by bpapa on How to send a push Notification every x minutes?bpapa2009-12-15T14:56:20Z2009-12-15T14:56:20ZI can't even put this answer due to minimum characters required in the "answer" field - yes.http://stackoverflow.com/questions/1902450/how-much-time-does-including-hmac-sha1-encryption-in-your-iphone-app-add-to-the-aComment by bpapa on How much time does including HMAC-SHA1 encryption in your iPhone app add to the App Store approval process length?bpapa2009-12-14T18:10:29Z2009-12-14T18:10:29ZI'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-appComment by bpapa on Adding logo for iPhone appbpapa2009-12-14T15:49:27Z2009-12-14T15:49:27ZKeep 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-viewComment by bpapa on How to include a third option for a drill down table view?bpapa2009-12-13T16:59:34Z2009-12-13T16:59:34ZGonna 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#1880853Comment by bpapa on starting iChat session in iPhone from web appbpapa2009-12-12T22:35:49Z2009-12-12T22:35:49ZIt 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#1891029Comment by bpapa on UISearchBar with Controller in a normal UIView?bpapa2009-12-12T06:18:20Z2009-12-12T06:18:20ZYou should only have one view controller per screen according to Apple's guidelines.http://stackoverflow.com/questions/1889485/monotouch-comments-reviewsComment by bpapa on Monotouch comments/reviews?bpapa2009-12-11T17:59:54Z2009-12-11T17:59:54ZThere are like 100 "should I use Monotouch?" questions here and they just lead to drama. Voting to close.http://stackoverflow.com/questions/1886158/how-do-i-translate-parabolically/1886216#1886216Comment by bpapa on How do I translate parabolically?bpapa2009-12-11T06:40:13Z2009-12-11T06:40:13ZOK 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#1886164Comment by bpapa on How do I translate parabolically?bpapa2009-12-11T06:28:48Z2009-12-11T06:28:48Zhow does this translate into a Matrix?