bpapa

4,481
Reputation
639 views

Registered User

Name bpapa
Member for 1 year
Seen 33 mins ago
Website
Location US
Age 30
JEE and iPhone developer. Follow me on twitter - bpapa
28m
answered iPhone: Multiple View (Screen) Management?
47m
answered How should we be obtaining user permission for our server to post tweets to Twitter, using OAuth, from the iPhone?
52m
answered Does iPhone provide any API for inserting menu selections into e-mail, SMS and Addressbook context menus?
2h
comment iPhone reachability checking
Seconding Kendall, you should follow Apple's Reachability sample (make sure you are using the latest version, which is 2.0 I believe) to a T. This includes checking for reachability asynchronously. If you do it synchronously and don't get rejected by Apple, your app WILL crash at times once it's in the wild.
2h
comment Displaying topic specific tweets in Twitter
No. If your app is simply going to allow tweeting with a particular hash tag and viewing tweets with that hash tag, there is no need to set up an account to follow. You can programatically submit tweets using the Twitter API and use the same API to fetch all tweets containing a given hash tag.
6h
accepted Displaying topic specific tweets in Twitter
7h
revised Initialize UIPickerView
deleted 1 characters in body
7h
comment Displaying topic specific tweets in Twitter
I don't really understand your domain so I'm not sure how tweets respond to customers. If your users are sending tweets using your app, you can certainly pre-populate the content with a hash tag of your choosing. Maybe I'm not understanding you correctly but it looks like users will be able to send tweets directly from your app.
14h
answered Initialize UIPickerView
14h
comment iPhone trial period for app
Apple would recommend against the Lite/Full versions and would instead encourage unlocking features via in-app purchase, since that is now available in free apps.
15h
answered Displaying topic specific tweets in Twitter
15h
comment Is MonoTouch a viable platform for iPhone development?
As I said in the other comment, it doesn't mean Apple WILL approve Mono Touch apps - it means they HAVE approved some. And since the app store approval process is inconsistent, it doesn't mean anything going forward. It's still anybody's guess how this will play out.
15h
comment Is MonoTouch a viable platform for iPhone development?
Actually Rory, no it doesn't confirm a thing, since Apple's App Review process can be characterized as inconsistent at best. The only confirmation would be Apple publicly stating that they have no problem with Mono Touch. The only thing I've seen that comes close to that was a similar product called PhoneGap, in which the creator claimed that a Dev Support member emailed him to tell him that apps will not be rejected for using that tool. It's not exactly as reassuring as Steve Jobs or Phil Schiller saying the same in a Wall Street Journal interview, or something.
2d
accepted How to make a server send a processed data back to the invoking iPhone?
2d
revised Initialize UIPickerView
adding question asker's answer to the question
2d
comment UIGetScreenImage - Private API
It might not be the best user experience, depending on your app, but is it possible that you could ask the user to take a screen shot and then get it from the camera roll?
Dec
4
comment Is MonoTouch a viable platform for iPhone development?
That there is very little evidence that MonoTouch is a viable platform for iPhone development. Y'know, addressing the question asked.
Dec
4
accepted IPHONE: provisioning profile expiring every 2 months?
Dec
4
comment IPHONE: provisioning profile expiring every 2 months?
I just went to the iPhone tech talk in NYC which was completely free and in which I got to ask questions directly to Apple engineers. But hey, I didn't get a crappy free netbook. Damn them!
Dec
4
answered IPHONE: provisioning profile expiring every 2 months?
Dec
4
comment attachment doesn’t displayed in mail which is sent through iPhone
Is it a supported attachment type?
Dec
4
comment CommonCrypto is no longer part of the iPhone SDK - Where else can I easily get an MD5 function?
you can still use CommonCrypto in an app, I did. I haven't submitted to the app store yet but I haven't heard anything about apps getting rejected for using it. Are you sure the distribution thing didn't have to do with some kind of licensing? I know there are all these weird international laws and stuff around encryption.
Dec
4
comment Is MonoTouch a viable platform for iPhone development?
So two apps have been created so far - one that doesn't look like it's taking advantage of the iPhone hardware much at all and one that is probably going to be removed as soon as Hasbro catches wind of it. Yikes.
Dec
3
answered force application to terminate in iPhone
Dec
3
answered PushViewController now crashes
Dec
3
comment iPhone - Volume/Mute Buttons
Not sure what you mean exactly by this pop-up... how do I get it to appear?
Dec
3
answered app quits on launch
Dec
2
answered is there any way to make synchronise our application to another app in iphone ?
Dec
2
answered Can I have a UIBarButtonItem with a colored image?
Dec
2
comment iPhone: Pass information from web page to app that’s downloaded from App Store
So the user has to launch your app, which launches safari, and then has to go back to your app? that doesn't sound like an experience preferable to entering a username/password directly in the app.
Dec
2
comment Redirect to Favorite Page in Iphone
There is no such thing on the iPhone as a "favorite page", nor is there concept of a "redirect" outside of Safari.
Nov
26
answered What is the state of non-Objective-C programming for iPhone?
Nov
26
comment What is the state of non-Objective-C programming for iPhone?
Dennis - considering nobody knows what goes on in the Apple review process, there is no way anybody can say with confidence either way that Apple would know or not, or if they would eventually have a means to know some day. Until somebody at Apple says "yes, you can develop apps with Mono Touch!", I wouldn't recommend touching it with a 10 foot pole.
Nov
25
answered iphone Analysis & design - creating work flow
Nov
25
comment How do I use a UIWebView in a Table Cell?
I wound up accepting this one b/c of the reality that this was not something that can be done with a UIWebView. Personally I wound up abandoning the feature but I will revisit soon - and what I'm going to do instead of using a TableView is just simulate it using HTML and CSS, and putting it into a single WebView. Then I'll use a WebViewDelegate to sort of "intercept" clicks on links and determine whether to show other web content or do some other action in my application.
Nov
25
comment How do I use a UIWebView in a Table Cell?
ps this should have been a new question (or comment), not a answer. I actually wound up abandoning that feature. however i'm going to revisit it eventually, and I'm considering not using a TableView at all and just putting all of the HTML into one WebView.
Nov
23
comment where to load the request ?
What do you mean by "request?" An HTTP request?
Nov
22
answered What is minimum hardware and software requirements for Iphone native apps development?
Nov
21
comment iphone application layout
You should probably use a UITableView instead of something that looks like the iPhone home screen. Not only do you save yourself writing a lot of code but it's well understood iPhone app behavior.
Nov
21
comment Displaying nearby businesses in mapkit
If the 3rd party service provides either an address or a geolocation you can use the MapKit reverse geocoder or the Google Maps HTTP API to translate that into data that can be used to create MKAnnotations. Foursquare provides both of those data points, by the way. Seriously, if this is something for a foursquare city you should take a look, it's awesome.
Nov
20
comment Displaying nearby businesses in mapkit
Should note that in my experience the Google Maps API doesn't work with businesses, although I may have missed seeing such support.
Nov
20
comment Displaying nearby businesses in mapkit
Depending on what city you are in, and exactly what types of businesses you want, you might want to look into the foursquare API. The site itself is picking up a lot of steam and in the longterm may wind up being the best source for this kind of data
Nov
20
comment How to make a server send a processed data back to the invoking iPhone?
Can you provide an example of how this polling works? Isn't that for media playing or something and doesn't it lock up the main thread?
Nov
20
accepted MKMapView disposal
Nov
20
answered MKMapView disposal
Nov
20
answered How to make a server send a processed data back to the invoking iPhone?
Nov
20
awarded  Good Answer
Nov
19
comment How to create custom UIAlertView
It might be too late but you may be able to leverage UIAlertView instead of writing your own class. I did some subview mining to mess around with the buttons and such but I don't recommend doing the same. However you can insert subviews and also change the frame of the UIAlertView, maybe that will meet your needs instead? UIAlertview seems to have a lot of behavior and I wouldn't want to duplicate it, personally.
Nov
19
awarded  Enlightened
Nov
19
awarded  Nice Answer