I would like to use sortable HTML tables driven by a Javascript API (e.g., BBC Glow) with the iPAD - however, I cannot drag an otherwise draggable item using the iPAD as the entire page scrolls instead of the element I would like to drag.
Is there a way around this?
...
I'm refactoring one of my apps from the iPhone to the iPad and this has resulted in the removal of tabs as I've been able to combine functionality onto 1 screen and use popovers to enable the user to select stuff that previously required a new tab.
I'm basically left with 2 tabs now. One (which is best viewed landscape) shows a map of t...
I have 3 images on the same place on my app's bundle: "image~iphone.png", "image@2x~iphone.png" and "image~ipad.png".
when I do
UIImage *imageU = [UIImage imageNamed:[[NSBundle mainBundle] pathForResource:@"image"
ofType:@"png"]];
BOth, the iPhone and iPhone 4 hires versions load fine, but not the ipad image. When I run on iPad, I ...
In order to avoid a huge hassle with ugly UI glitches from the popover's view after a surprise rotation, I just want to dismiss the popover altogether when this happens. However, for whatever reason, the various orientation notifications, such as (void)willRotateToInterfaceOrientation:duration: do not get called when they're located ins...
I've done a search on SO for this topic and have found similar questions, though none seem to address my specific concerns.
I'd like to experiment with building a turn-based, eight-person multiplayer iPad game. For this, I'll need to build a game server that manages all the different games being played at any given time. The backend f...
My iphone app downloads user specific data from our web server. How can I identify a unique user/device? cookie? ip address? or do I need them to register first?
What are some issues I need to be aware of? best practices?
...
I am designing some html pages for iPad. While trying out css overflow property like yscroll, auto. The scroll bar is not appearing in iPad and also the content not getting scroll. I tried in ipad simulator as well as in device. Is there any other way to achieve this property. Please help me out. Thanks in advance
...
I have implemeneted ipad application and i want to connect with monitor for presentation.i have written below code .
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[window addSubview:[navigationController view]];
if ([[UIScreen screens] count] > 1) {
window.screen = ...
I am about to send in my app to apple for testing but I dont know what the sample image sizes are for the images that appear in the app store.
I know that the big icon of your app is 512x512.
Does anybody know?
...
I have 3 versions of an image: "myImage~ipad.png", "myImage~iphone.png" and "myImage@2x~iphone.png".
Obviously, the last one has twice the size of the second.
I am loading them using
UIImage *imageU = [UIImage imageNamed:@"myImage.png"];
UIImageView *myView = [[UIImageView alloc] initWithImage:imageU];
[self.view addSubview:myView];...
Hi,
like i said, i want to know if it´s possible to layer different videos with alpha channels? So for example i have 3 videos playing layered. Then i want to change on runtime the second layer.
Does that work on the iPad?
I´ve no idea. I´ve only read that you can display a video in a single view since the iOS 3.2 Version, but playin...
Hi, I'm developing painting app. I've tried to do it with CoreGraphics/Quartz 2D and drawing curves algorithm is pretty slow. So we've decided to switch to the OpenGL ES.
I've never had any OpenGL experience, so I found glPaint example from apple and started play with it.
I've changed erase method do make white background.
How I stuck...
Hi,
I am developing an iPad application that lists News Videos from Dailymotion. I also want to play these news videos in my webview.
I tried playing the URL corresponding to the tag "media:player url=" in iPad. It does not work because iPad is not compatible with flash. Also, I tries embedding the code given as comment inside the tag...
Hi,
I've followed the steps at
How To Integrate Google Analytics Tracking Into Your Apps In 7 Minutes
http://icodeblog.com/2010/04/22/how-to-integrate-google-analytics-tracking-into-your-apps-in-7-minutes/
successfully for an iPhone application, but recently have tried for an iPad app and I am not seeing any stats come through after a...
Does anyone know if it possible to have a transparent background for a UIPopOverController on the iPad?
I'd like to put a semi-transparent view inside the popover (hence the desire for the popover itself to have a transparent background).
I think it can't be done ... but I'd love to know if I am wrong!
...
I'm trying to create a basic app on the iPad SDK 3.2, that displays one movie player that switches between different video sources. Switching between VOD using the code below does not have any issues. However if I switch to a live stream and then back to a VOD the video player constantly stalls.
I've also tried releasing then re-cre...
I've encoded a few videos on http://www.theparkerpalmsprings.com to play using HTML5 when loaded via an iPhone or iPad. In my testing, everything works as expected when viewing the site on an iPhone (I've tested on a 3G and iPhone 4), but when loading on the iPad the Quicktime logo flashes quickly and then nothing happens. Is this a prob...
Hi. I'm using the Fancybox on this page: http://bit.ly/9T4LPC
I've set it to show the videos in the top carousel in a Fancybox only
if the browser is Safari/iPad. If you click one of the videos in the
top content carousel, you'll see some extra lines outside of the
Fancybox. Plus, you'll see that the title item (set to titlePosition:
"o...
My application on the iPad allows users to browse remote photos on their photo sharing site and optionally download whole albums of photos to the application's local directory (Documents) for offline viewing. I'm running into a problem where after a user has downloaded several (large) videos for offline viewing, they come back later and...
I read an article somewhere explaining that apple uses OpenGL ES to implement the page turning effect in the iBooks app. Since you can perform 3D animations on 2D Layers using only Core Animation, what might be some reasons you'd have to use OpenGL ES to create that page transition animation?
Thanks in advance for your thoughts!
...