Hi,
In my Iphone application ,i am using .plist file having so many data.
I want to select multiple lines in .plist file.
Please give any key combination by using which i can select multiple lines in .plist file and also use it for my own purpose.
Thanks,
Mishal Shah
...
As I understand it, you can set one of four values for the key "AutocapitalizationType" in Root.plist of the Settings.bundle: None, Sentences, Words, AllCharacters. None seems to work quite well :D, but none of the other options seem to do anything. To test each change, I save the Root.plist file, delete the app from the simulator, and t...
Hi, anyone knows why UIViewController wouldn't become first responder when I run this code:
[self becomeFirstResponder];
NSLog(@"is first resp: %i",[self isFirstResponder]);
In the console, I always see the line: "is first resp: 0"
I HAVE canBecomeFirstResponder method:
- (BOOL)canBecomeFirstResponder {
return YES;
}
I don't even ...
Hello ,
I have taken an Imageview class and iam adding image into that with code:
TileImageView *tileImageView = [[Tile alloc] initWithImage:tileImage];
and adding into view like this:[self.view insertSubview:tileImageView atIndex:0];
So how to remove the Imageview class and alloc new image to that view
...
Hi,
In my iPhone application, i have same key and its same value in the iPhone plist file.
i want to insert it 200 or more that times.But,in this case i am going for the manual entry.
but it seems to be very tedious task if any body has to insert same (i.e. key=daTA value=10) more than 200 times manually.
Is there any automation avail...
I have an iPhone application that needs to be updated as soon as a change is made to the server. How can I have the server "push" data to the iphone rather than the iphone constantly polling the web service?
EDIT: I want th iPhone to receive JSON updates as soon as the server processes them, without having to request.
I suppose since t...
I have a simple UIButton with an Alpha property that I would like to animate from 1.0f to 0.0f, and then back to 1.0f. This is basically responding to TouchDown.
Also, is there anything special I need to do if the routine I am calling from is not on the main thread (async delegate invoked on the ThreadPool)?
Should I use CAAnimation?
...
I am trying to build 15-puzzle game.
Here I need to swap a blank image with a clicked on image. I would like to know how to swap these images.
I have stored the co-ordinates of the two images,but don't know the format to identify the blank image and then set its origin to clicked image.
...
Hi,
i would like to reveal an image on an UIView:
showing an empty screen
slowly reveal the image from to to bottom
Any ideas ?
...
Hi!
Apple has many big colored buttons, that are not standard. One of them is a delete contact button in address book. Another is Start/Stop button in Timer (Clock application) or End Call button in Phone. They are different, but all have similar appearance.
Question is simple. Is there a way to create these kind of buttons without us...
Hey,
I am trying to write a cocoa touch static library.
To keep it simple I would prefer not to use private variables within my interface file.
The code right now looks like this:
interface file (myView.h):
@interface myView: UIView {
NSTimer * myTimer;
}
@end
implementation file (myView.h)
@implementation myView
@end
This NS...
Hi, i am having a UIWebView showing and HTML page that has some checkboxes, radio buttons. My Application has tabbar controller that switches b/w two controllers. How i can maintain the current state of UIWebView. ( e.g. i have selected a checkbox and i change the tab and go to other ViewController and again come back to UIWebView. the W...
Looking at the QuartzDemo sample application, I love the speed of the PDF rending using quartz alone (that is, without using uiwebview). However, when I'm zooming in the PDF it doesn't seem to become more clear like it does in PDF view.
...
I'd like my UITableView to behave like the the table in the Contacts editor, i.e. the user should hit Edit and an "add new category" row should appear at the bottom of each section.
I'm using the below code to do this, but the problem is that there is no smooth transition as there is in Contacts. Instead, the new row suddenly appears. ...
Hello I want to make use of kooaba in my iphone application, can anybody plz tell me how can i send a query to kooaba API and how can I use that kooaba API to recognize the image from my application.Where I have to send my photo using kooaba??
...
Hello,
How to show a small pop up on click of button on a view that will be displayed in small region of the parent view.
...
Hi all,
i successfully download the pdf file and it's working fine. But the problem is zooming . when i m zooming the clarity is not as clear as originally.
need help..
thanks in advance.
--- goeff.
...
Hi all,
I am developing a tab bar application.
I have five tabs in it.
For each tab i have separate navigation controller.
For each tab's table View I want to load data from a web service.
I can do so for one tab by making a separate xmlparser class initializing it with appdelegate then call it in the applicationDidFinishLaunching ....
In an iPhone app I am developing, there is a setting in which you can enter a URL, because of form & function this URL needs to be validated online as well as offline.
So far I haven't been able to find any method to validate the url, so the question is;
How do I validate an URL input on the iPhone (Objective-C) online as well as offli...
Hello,
I am getting zero product identifiers from SKProductsRequest
I did the following steps
a) created a In App Purchase Test User account under 'Manage Users' in iTunes Connect
b) created some in app purchase products under 'Manage Your In App Purchases'.
c) Loaded the app onto the iPhone, went to Settings->Store and logged out ...