Hi there,
I want to access some pictures saved in a windows folder which is shared to a local network. Is there an easy way to access this folder using cocoa touch on the ipad (connected via wifi)?
Thank you!
...
I'm adapting a small HTML/CSS/Javascript driven web magazine as an iApp for the iPad with the great mobile framework PhoneGap. Everything works great, except the orientation change from portrait to landscape mode.
I use the following Javascript code in the header of the index.html (portrait):
var isiPad = navigator.userAgent.match(/i...
I need to move the view up when the keyboard is shown but only for 1 textfield at the bottom of my view, I thought it would be as easy as checking for isFirstResponder but no such luck - here is what I was trying:
if ([notes isFirstResponder]) {
[UIView beginAnimations:@"moveupcontrols" context:nil];
[UIView setAnimationDuratio...
I have it disabled already, and I can enable it again.
I used:
document.ontouchmove = function(e){
e.preventDefault();
}
In the document.ready(); to disable it.
And I used this to enable it.
function doTouchMove(state) {
document.ontouchmove = function(e){
return state;
}
}
I have it so when a user doubl...
In my humble opinion, the default alert view size on the iPad is a way too small. I have seen this and still have the same issue as the original poster there
http://stackoverflow.com/questions/2763713/change-width-of-uialertview-in-ipad
When reassigning the frame property, x-origin, y-origin and height all change as I tell them to, but...
Hello All,
My Application is crashing due to low memory [ Received memory warning level 1 + 2]
To trace this I have used Instrument and come with following points
Test Enviorment : Single view controller added on Window
When I don't use UIImageView Real Memory is used 3.66 MB
When I uses UIImageView with Image having size 25 KB : R...
Right now with my settings.bundle only bulids for the pro version. I want to know two things:
1: How do I get it to show up for both the pro and lite builds?
2: Is there a way to show different settings based on iPhone vs. iPad?
...
Hello all,
So I am trying to connect to my company's website through an HTTP authentication request. The problem is, in order to validate, it has to go through a series of redirects and gather 2 cookies along the way. Does anyone know if the ASI libraries found here have a way of handling this sort of thing?
For example, does the r...
I'm talking, how much time can be expected to elapse between the user touching the screen and something like touchesBegan being called? (Or something lower level, if such a thing is available.) Sub-millisecond? Multiple milliseconds? Tens?
...
I have a large application that I am working on which has a primary view, call it a root view, with toolbar at the top for program control. There are a number of additional views that overlay the "root" view but leaving the toolbar visible - There is a popover menu that controls which sub view is show over the "root" view. Please note, I...
I am presenting MFMailComposeViewController as modal from a view controller (lets call it xyz) added to nav stack. When user clicks on cancel button, the MFMailComposeViewController is dismissed. This works fine when xyz is added to nav stack in portrait/landscape mode and the device orientation doesn't change until after cancel is click...
Hi Guys,
So I have poured over the ASI documentation but can't seem to find anywhere that says whether or not it is possible to capture the cookies from a post. Is there any method that rips out the session cookies into a dictionary or something from a request? Thanks!
...
I'm developing an iPad app that uses a lot of hard drive space. The space is mainly
occupied by resource files inside the app's main bundle directory. There is quite a large number of them as well.
After I tap the app's icon on the device, there is an awkward pause (of probably 2 seconds) before the screen is replaced with the launch ap...
I've added a couple of additional virtual keyboard keys to my page to let the user type characters not found on the iPad's virtual keyboard. They look almost identical to keys on the iPad's keyboard, and inject the character correctly into the INPUT element. But the little (512 bytes) clicking sound .WAV that I'm playing when the user to...
What I wish to achieve is have a simple gallery of images which the user can swipe through using jQTouch ( http://jqtouch.com )
<div id="container">
<ing src="1.gif">
<ing src="2.gif">
<ing src="3.gif">
</div>
The images are quite long, for example 200px in width each. The container itself is 300px wide with hidden overflow.
What I w...
I was wondering if anyone knows where I can find documentation or a tutorial on how to make a vertical tab bar for iOS like in 1Password or 2do.
I figure that these aren't "real" tab bars, but I'd really like to use that functionality and I'm at a loss on how to accomplish it. Thanks in advance for any help!
...
I'm developing a universal iOS application and I set the deployment target to any version before 3.2. However, when it is compiled and I go to install it on an older device, xcode won't install it because version 3.2 is being required. The info.plist generated confirms that the minimum os version is being set 3.2. Why is this?
I have a...
Hi All,
Can anyone give me any advice on setting up the ability for a user to flip from screen to screen on the iPad. Similar to how you can flip from day to day in the default Calendar application.
Can I take advantage of anything that is built in? or does this need to be custom built.
Any advice or starting tips/hints would be appre...
Like many other developers out there, I've created iPhone projects that use a UITabBarController as the root controller, with the tab views using UINavigationControllers to drill down from lists to detail views. And like many other developers out there, I need to migrate these apps to the iPad so they take advantage of the bigger screen ...
Does anyone know if the uinvagitionbar of a uinavigationcontroller can be moved down? I'd like to move it around 200 pixels down to have a logo on top. From my research, I understand that the navigationbar should not be subclassed and there are only two properties that should be changed, it's color and it's visibility. So is this impossi...