ipad

[iOS] How to preserve touch event after new view is added by long press

Hello, When I add a new view after detecting user's long press, I get touchesCancelled event. However, I want to preserve the long press event to newly added view. What I want to implement is user touch & hold the screen, then new view added, and user can move touch around in the newly added view without touch up and touch down again. ...

webdav server for ipad

Hi everybody, I am building an application that needs to implement webdav server in order to share pdf file between ipad and mac, and want to access google docs and dropbox account. Im really tired and i am posting this question after i tried with all my possible approaches. please let me know if any one has any good idea. Thanks ...

ipad: Easy way to customise the UIActionSheet look & feel to be like the one in Safari?

Hello all This is the default look & feel of UIActionSheet. The border of the view is very thick with black colors, the overall looking is very bold and heavy. This is the one Safari has You can see that the border is very thin, and overall looking is more light and simpler Can someone tell me how do i customise the default UIA...

Drag & drop: detecting what you're dropping on

Assembled elders of the Cocoa-Touch, I have a question for you all about Drag & Drop on the iPad. I am attempting to drag an item from a popover onto an underlying canvas. Employing the UIPanGestureRecognizer class I can detect a drag-start and create a UIView to drag with the finger tip. My application runs in landscape mode. The tro...

is it possible to develop iPad app on windows

Hi, is it possible to develop iPad app on windows, or I'll need a Mac anyway? ...

problem in saving video with nsthread

Hi I am making a ipad application , in this i am having one table view and on selection of table did select cell method i am saving different videos to NSBundle (i.e. locally to my ipad ) Now when processing of saving one video is being going on and till the video is not saved, if i click on the other cell and wait for the video to...

How to Programatically access ipad "Video" folder

Hello, I am using the iPad, and I have videos/movies stored in the "Videos" folder on the iPad. Note: I'm not try to access videos saved in the Photos Section, I can already access videos saved in here by using; UIImagePickerController* picker = [[UIImagePickerController alloc] init]; picker.delegate = self; [picker setMediaTypes:[...

UIModalTransitionStylePartialCurl with mkmapview

HI I am bit new to the IPAD app developement. we have a requirement in our project, to display the google map exactly look like the goolge map application in IPAD. Could any one give me an example if you come across..? i have been searching for this from yesterday. could not fine any. PLease give me any links or ideas which has an e...

subscripted letters in UITextField placeholder

I need to learn about ways of doing this. The options I am aware of are: 1) Load my own custom font which includes subscripted letters, or 2) Simulate a "placeholder" with two UILabels positioned directly over the UITextField, and make those labels go away when the user starts typing. In my case, this will be more work than it so...

javascript/iphone/mobile two-finger-touch question.

I'm building a website with some touch events and need to know how to make my touch events* only work when only 1 finger is touching (*these events prevent default), but I want to disable these events and restore defaults when 2 fingers are touching (to allow zooming, and keep the 1 finger events from being confused by 2 fingers). Examp...

iOS Navigation Breadcrumb Trail

Basically, I have a client that wants a breadcrumb trail implemented in the navigation bar. I realize Apple doesn't recommend this behavior, but the app I'm building is for internal use only and won't be submitted to the App Store. I need something along the lines of what AirVideo uses in their iPad App. Are there any navigation control...

AudioServicesPlaySystemSound not working on iPad device

I'm in the early stages of developing my first iPad application, and for simplicity I have so far been using AudioServicesPlaySystemSound and the associated functions to play sounds. My code is based the SoundEffect class from Apple's Metronome example. The specific symptom is that I can hear the sounds in the simulator but not on the ...

Ignore Tab character in UITextField... (iPad app)

Hi everyone, I have a TableView with TextFields in each cell and I want to those textfields ignore the character tab (/t). When the tab key is pressed, the textField:shouldChangeCharactersInRange method it's not called Does anyone knows how to do this? I know that there is no tab key in the iPad keyboard but the blutooth and dock one...

prevent viewcontroller from being pushed to splitviewcontroller twice

I want to prevent users from making the same selection twice or more and just pushing and pushing the same view controller onto the stack ...

When does App Store promotional code become effective?

Hi, I just submitted my app to the App Store and it's in the reviewing process (3 Degrees of Wikipedia). I have set the "Availability Date" to a future time as some blogs want to cover my app, and I want the release of the actual app come out at the same time as the reviews. My Problem is: will the promotional code work for the blog re...

keeping track of accessed objects in CoreData via objectID?

I want to have table in CoreData that holds a list of other CoreData objects I have accessed, for instance I have Clients and I want a table RecentClients that is simply holding this list and the date they were accessed. Can I store the objectID and then do a fetch request based on that? EDIT: See Ben's answer below and then go here: h...

Exporting tabular data in Numbers-readable format

I have app that exports data in CSV. Recently I added "Open In..." feature for opening .csv files in other apps. I would like to be able to have Numbers (on iPad) open exported files as well. Trawling through Numbers's Info.plist, I saw that it supports four document types: com.apple.iWork.Numbers.sffnumbers com.apple.iWork.Numbers.nu...

How can I control which files are included in the application bundle?

If I include files in my Xcode project, how can I control or specify which files are included as a part of the application's bundle? For example, all the PNG files I add to the project always wind up in the bundle. Conversely, the .m and .h files are not. How can I control or specify which are or are not included? If I through in some...

universal application ipad/iphone image naming convention?

Hi In my application i need to get the correct image based on the device ipad/iphone4/iphone3 device. for example i have image name a.png(width 40,height 20) its for iphone3/ipod ,and if i give [email protected] (width 80,height 40) its for iphone4 , if i mentioned the code UIImage *myImage=[UIImage imageNamed:@"a.png"]; myImage contains...

Optimize loading of many images on iPad

I'm working on a project for the iPad where I'm trying to simulate the rotation of a 3D-body with touch by switching pre-rendered images. I'm not the sharpest man when it comes to memory management so I wonder if anyone has any tips on how to optimize this. My solution now looks something like this: - (void)touchesMoved:(NSSet *)touch...