Hi,
I am using slide-up view in ipad,But i am facing one problem that when i use button action on portrait mode then view is sliding up but when used in landscape mode that time its not working.
Please help me out to solve this problem.
Thanks
Kunal
...
hi,
i have done like
@interface tabViewController : UIViewController
{
IBOutlet UIButton* button_first;
IBOutlet UIButton* button_second;
IBOutlet UIButton* button_third;
IBOutlet UIButton* home;
}
but i could not in file owner those button? what i have to do? any help please? i have set everything correctly (viewcon...
Hi,
I am using slide-up view in ipad,But i am facing one problem that when i use button action on portrait mode then view is sliding up but when used in landscape mode that time its not working.
Please help me out to solve this problem.
Thanks
Kunal
...
hey!
is there a possibility to determine if an uiview obj is going to be displayed. imagine: you have 2 uiviews in an uiscrollview. now you are going to switch per gesture from the first view to the second. the first view now is NOT in the viewport. now you are going to go back to the first view. and now I want to be notified that this ...
I'm seeing my app being jettisoned due to low memory. In trying to track down the problem, I ran the app through the Allocations instrument. Unfortunately, I couldn't see any problem with the memory usage when it was killed.
At the time of ejection, the app was playing a video, and had been for about 45 seconds. There were no touches or...
I have the following situation: A UIScrollView contains a UIWebView. I want the content inside the web view to be touchable, but the scroll view should not scroll unless it was touched near the left or right edge. I have subclassed both UIScrollView and UIWebView to try to override methods like hitTest and pointInside but no go so far.
...
Hello friends.
I have a web service with a URL like this: http://webservice.com/?log=1
I would like to make a request to this URL in Objective-C such that the web service can log that fact. I don't care to pass anything on to the web service and nor do I care how it responds to the request.
What is the most effective way to achieve th...
i m developing ipad app and using MPMoviePlayerViewController in it to play videos.. it works ok everything.i set frame of MPMoviePlayerViewController in potrait mode.that is half of potrait scree. but in landscape mode i want movie to play in full screen. so i set frame accordingly. now when i launch app in potrait mode .. i works ok as...
Is it posible to present a keyboard the way is shown when you set a passcode for your ipad?
...
I am writing an ipad app that's going to list data, including images, from a WS.
I am going to consume a web service written in .net (.asmx). I looked at 2 examples,
the seismicxml that uses NSOperation and uses an xml feed.
another awesome example from Wei-Meng Lee that does not use NSOperation but shows how to make the soap envelop...
Are there any open source iPad applications ? Please help me by giving some sample ipad source code links , which will help to design good iPad applications..
...
Okay, I am still learning how to program and things are moving along quite well, but I have a question for the group about something that has been plaguing me:
How do I create a pop view where the background can still be seen? I mean, say my iPad view has 5 buttons on it, and I want a small square to pop up over where that button was, ...
Hi,
my UIWebView is behaving strangely. For example, if I go from http://google.co.uk to http://ftd.de (a news site), it will start looping with errors. It doesn't care if I press stop or not, it just continues.
The log outputs the following and loops the message:
2010-09-03 16:16:55.061 Test [1336:207] http://www.ftd.de/
2010-09-03 1...
Hi,
I load my xib files through: initWithNibName programatically. If I set something like: [[LoginController alloc] initWithNibName:@"LoginController" bundle:nil];
Shouldn't it load LoginController.xib if it is executed on iPhone and search for LoginController-iPad.xib on the iPad? This is not happening at my code, do I have to select ...
I have an app that downloads a good amount of data to the iPad and a couple thousand images. Just looking into concerns about wearing out the flash disk.
Does checking to see if a file exists wear in the drive as well?
Editing and saving of data using Core Data?
...
I want to publish a magazine for iPad readers. How do I go about doing this?
...
I have an an iphone app and am using shouldAutorotateToInterfaceOrientation to determine when to autorotate. On the iphone, I specify that UIInterfaceOrientationPortrait is the only allowed orientation; On the iPad, I just return YES (ie all allowed), like so:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interf...
Hello. I'm diving into iOS development and I plan to build a few basic apps that make use of my own reusable code. As I update the files that contain my reusable code, I'd like those updates to be reflected in all the Xcode projects that use them. What are some ways I can do this?
Thanks in advance for your help!
...
Hello. I've created an iPhone app project in Xcode and I'd like to change the name that is displayed under the app icon, as well as in alerts, etc. By default, the name of the app is the same as the name of the project. How can I change the name of my iOS app?
Thanks in advance for your help!
...
I have this huge problem with memory management.
I have been googling for 8+ hours, with no success...
The problem:
I've got a UIScrollView, I've got an Array with 24 paths to Images in it and I want to show them in the UIScrollView with paging enabled.
All images is in the size 1024x748 (iPad landscape resolution with status bar) and...