Hi,
i like to create an artwork counter- display on an iphone, diplaying 0 to 9. The 10 digits are 10 png- files with the numbers 0 to 9 as their artwork content. The 10 png- files are implemented by using NSArray. Following you'll find the implementation- code:
zahlenArray = [NSArray arrayWithObjects:
[UIImage imageNamed:@"...
I have a table view in that i am showing an text fields now my problem is i want to read the data from those text field i am able to get the value but i even want to know its from which text box i want the index of the text box
...
Hello.
I want to create a form in my iPhone application.
I have found a link where the process of submitting the data is explained but I don't know how to get the data and create the httpbodystring.
Are there any tutorials or help links about that?
Any help will be appreciated.
Thank you all in advance. :)
...
Hey guys,
Is it possible to limit an integer in the NSUserDefaults?
Off course you can limit it within your app but I am thinking of the TextFields in Settings.
Would be great to get some hints.
Thanks a lot.
...
Is there any way to handle call events in IPhone? i.e. Log calls and sms in my app, block unwanted numbers, etc. I know the IPhone SDK doesn't provide that but I have been googling this and what I got was an app called iBlackList. Although it runs on jail-broken phones but it does my required functionality. I wonder how? Has anyone idea ...
i downlaoded three20 p31. when i tried to build i got errors in following places
- (UIAccessibilityTraits) accessibilityTraits {
return [super accessibilityTraits] | UIAccessibilityTraitStaticText;
}
the same function is used in 3 classes. TTbutton.m,TTLabel.m,TTstyledTestlabel.m
. i simply commented all funnctions containing U...
Hi there
Is there way to mute an audio stream or at least control the volume?
cheers
...
I'm new to iPhone development, and I have a question on how to create a view for my application.
The view should display a problem (using formatted/syntax highlighted text), and multiple possible answers. The user should be able to click on an answer to validate it.
Currently, I am trying to use a UITableView embedding UIWebView as con...
I am new to iphone development.what is the difference between tabbar based application and creating a tab bar using tabbar controller in a view based application.Which has the major advantages?Thanks.
...
When I try to cick on cell in my table view rather than take me to the next view I get a "Terminating due to uncaught exception" error.
Here is the code from the debugger:
010-03-27 12:52:48.805 MultiDetailView[335:207] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSCFArray objectAtIndex:]: index (1...
I have two NSMutableString objects defined in my viewController's (a subclass of UITableViewController) .h file:
NSMutableString *firstName;
NSMutableString *lastName;
They are properties:
@property (nonatomic, retain) NSMutableString *firstName;
@property (nonatomic, retain) NSMutableString *lastName;
I synthesis them in the .m fi...
Hi all i want to change animationDuration of a UIImageView while it's animating ... and want to do this 60 times a second... is there any way to do this ?
When I try to do it, the animation stops ...
...
I am implementing an in-app browser using UIWebView, that shows an 'action' button up-top that - when tapped - scales the UIWebView and allows the user to perform some other actions.
If, however, at the point of tapping this 'action' button, the user were entering some text on the webview, or using a picker to select an option from a d...
So apparently it is possible to keep the processor going processing stuff while the screen is locked, as indicated here:
http://stackoverflow.com/questions/1551712/running-iphone-apps-while-in-sleep-mode
However, after testing with the example code, UIAccelerometer will just stop giving value as soon as the device is locked pronto. Is ...
I am using this code for Page curl effect ....Its work fine in simulator and device... But its not (setType:@"pageCurl") apple documented api , this caused it to be rejected by the iPhone Developer Program during the App Store review process:
animation = [CATransition animation];
[animation setDelegate:self];
[animation setDuration:1...
Hi,
I've been trying to implement OAuth in my iPhone app. However I have hit a problem. I have two servers, a local web server which is on my machine at home, I use this for testing. The machine is IIS 7 running PHP 5.08. Everything works fine on this server.
However my live (web server) is running Apache and PHP 5.12. The problem is w...
hi,
has anybody already programmed a iphone compass heading tilt compensation?
i have got some approaches, but some help or a better solution would be cool!
FIRST
i define a vector Ev, calculated out of the cross product of Gv and Hv. Gv is a gravity vector i build out of the accelerometer values and Hv is an heading vector built out ...
I'm new to the iPhone and objective-c and I am still trying to get my head around ownership of objects so bear with me.
I have a DOBViewController that has a datepicker on it. I have created a custom init method:
-(id)initWithInitialDate(NSDate *)initialDate;
Another view controller has a date instance declared (NSDate *dob) that hol...
Hello. I am currently creating a multi-view game on the iPhone platform. I have my main view start to play some background music upon loading. I then go to another view and start the game. I am trying to get the background music from the original view to stop once I start the game. I am having trouble getting the stop playing music ...
Hi,
I've created an animation loop which I run as an operation in order to keep the rest of my interface responsive. Whilst almost there, there is still one remaining issue. My UIScrollViews don't seem to be reliably picking up when a user touch ends. What this means is, for example, if a user drags down on a scroll view, when they lift...