HEllo,
I have a situation here i have contents(NSStrings) in an array, is there any system or library that can assign the content of array to specific fields.
Please help if you have an idea about this.
Thnx in advance
(ok to elaborate)
say I have standard of a student then allocate it to standards text field corresponding to standa...
Hi folks,
I know that UIAlertView is modal and you can't touch any thing on the view when the alert is shown (except the keyboard and may be a action sheet).
Now I am trapped in a situation, I have an app where the final stage of the app is a screen where an alert is displayed and in the view the admob ad is shown. Now my problem is t...
I am trying to monitor a thread that i set running in the background. I need to be alerted when it is finished executing.
- (IBAction) btnGreaterTen_clicked :(id)sender{
self.searchDistance = [NSNumber numberWithDouble : 10];
CGRect frame = CGRectMake (120.0, 185.0, 80, 80);
activity = [[UIActivityIndicatorView alloc] in...
Hi...
I'm developing on a tally counter app. It should have a custom picker view like display showing the current count. Something like the one found in the simple, but nice, app from Pixel Research Labs.
I've started to read a book on Core Animations, since I think this is the place to find what I'm looking for. Am I right? Does anybo...
How does the App Store create the "Top Paid" "Top Free" and "Release Date" buttons?
They look like UIBarButtonItems in a UIToolbar but with a catch. The buttons merge together into one longer button. If it is a UIToolbar, I'm not sure how they connect the buttons so that they appear together like a tab bar ...
...
I'm trying to use Facebook Connect from an iPhone webapp, so it would look similar to how it looks in a native iPhone app which is using the Facebook Connect iPhone SDK.
The iPhone SDK gets the nice login page by visiting:
http://www.facebook.com/login.php?fbconnect=1&connect_display=touch&api_key=<key>&next=fbconnect...
I'm having a problem similar to [this question][1]
http://stackoverflow.com/questions/1449072/debugging-problem-in-x-code-iphone-development
I have created an application, but when i try to debug it, the breakpoints are created i yellow.The only difference from the above link is that, a message is shown in xcode status bar that GDB:Wa...
Hi,
Is it possible to keep the controls (timeline, play/pause, etc) on the media player visible? It seems the controls are visible when the played is loaded until the streaming starts, then it goes into hiding. Can I prevent it from going into hiding?
I have done my overlay view with images and buttons (controlling play/pause and stop)...
I'm just fleshing out some ideas for an iphone web app and it's going to be (in essence) a CRUD interface to a Rails web backend. Ultimately that backend will be a full blown website too.
My question is: what's the best way to handle "logging in" on the iPhone app? How should it authenticate to allow the user to see their data and add n...
Hi!
I've been asking lately about Obj-C circular buffer objects, assuming that would be the better way to control tons of data on a UITableView.
I have found a solution as far as Circular buffer objects go, but I've been wondering about maybe a better, faster and much more memory efficient solution: Calling my SQLite DB to update the U...
I want to record the user's voice without using the headphone. I want to record it directly by iPhone and play it directly by speaker. Is there any way to do this?
...
Hello,
I am doing the application in which I want to disable the autocomplete feature of the keyboard in a textfield.
Please help me as I am new to iPhone
Thanks & Regards
Rajesh
...
I'd like to use Urban Airship to send push notifications to a user's iPhone when a new Twitter Search result is found.
I'm pretty positive I'd need a web app built to accomplish this - to register the user's iPhone, save their search terms and poll Twitter Search. How could I go about building this app (in terms of which language to us...
I don't want to use any of the normal touch events in the iphone sdk.
When an user touches the screen I want to find where he touched and all of pixels he touches. Is there a way to do it in iphone ? may be using a low level SDK.
i want this to do it for some thing like a drawing app with finger on iphone.
...
hi,
i want to use an image in a UIButton buttonHeader background,
when i compile it i get an error that buttonHeader is not an image type, what property to use?
- (void)downloadImageHeader
{
NSMutableURLRequest *requestWithBodyParams = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://www.../imageHeader.png"]];
N...
Hello, i am trying to integrate adwhirl to my iphone game. it is opengl based and in landscape mode.
If i just place the ads they show fine but as if the app was in portrait mode. i need to rotate them.
I just can't get them to show right. i am trying this:
[SimpleGameAppDelegate get].adView = [AdWhirlView requestAdWhirlViewWithDele...
hi, i have 10 moving objects (UIImageView),
is there a better way to write this code?
- (void) jumpOnTimer {
jumpBall1.center = CGPointMake(jumpBall1.center.x+pos1.x,jumpBall1.center.y+pos1.y);
if(jumpBall1.center.x > 60 || jumpBall1.center.x < 0)
pos1.x = -pos1.x;
if(jumpBall1.center.y > 211 ||...
I have an iPhone version of my website. Is it possible to detect, using JavaScript, when the iPhone is shaken? Something along the lines of:
<script> function shaken() { alert("you shaked !!!"); } < /script >
<body onshake="shaken()">
...
Hello,
I am trying to add an A-Z index for a core-data populated table using the example here: http://blog.sallarp.com/iphone-core-data-uitableview-drill-down/
However, I can't work out where I can set my sectionNameKeyPath property in the core data helper header file:
Do I need to make a NSFetchedResultsController like they do in C...
Sorry if this is a stupid question, but I am new to this.
I am getting started with iPhone application development and would like to create an application that involves pulling data from from a web application.
Let's say the url is http://myapp.com/api/people/fetchall and it returns XML data.
How do I get this data into my iPhone App...