How to set the Screen Refresh Rate in my IPad
what i want to do is to display my image on two monitor2. i notice that Refresh Rate of my Ipad is too high for my monitor, how can I detemine the Screen Refresh Rate in my IPad and change it? ...
what i want to do is to display my image on two monitor2. i notice that Refresh Rate of my Ipad is too high for my monitor, how can I detemine the Screen Refresh Rate in my IPad and change it? ...
I don't think I am creating this array of UILabels correctly. If I put a breakpoint after this line of code, it shows that the array is empty. colorLabelArray = [[NSMutableArray alloc] initWithObjects: greenLabel, orangeLabel, blackLabel,purpleLabel, yellowLabel, redLabel, blueLabel, whiteLabel, nil]; If I do the same thing with UI...
On mobile devices such as the iPad, I would like to disable a feature that only works if position:fixed is supported. Is there a way to detect these devices without using the user agent string? The reason is that I would like to avoid searching for iPad, iPhone, iPod, Android, etc if possible. ...
I'm trying to request my company's Basecamp info for an internal project we're building. I understand how to add credentials in an ASP.NET environment but I'm new to iPad development and can't seem to get an appropriate response from Basecamp. Here's what I'm doing: NSMutableURLRequest *theRequest=[NSMutableURLRequest requestWithURL:[NS...
Note: This question IS programming related! It's all about better code and better software concepts through reading what customers say! So please don't close this, as it's important for my (and probably also your) software projects. In order to write great software, it is essential to read reviews of apps from competitors. That way, y...
I've started to play around with some 3d modelers a while ago. Now I'm curious: How can I bring such an 3D model to the iPhone or iPad, so that I can see it on screen and maybe even rotate it with gestures? 1) What's the best file format for the 3D models? 2) How would I load a particular 3D model file into openGL ES and then render it...
My app plays a video in fullscreen mode when the app is started. Everything is working flawlessly from 3.0 to 4.1. However, if I compile the same code for a universal app, it will work on the iPad, but will not work on the iPhone (simulator) anymore. Has anyone solved this problem? Here's the code: if ([self respondsToSelector:@selec...
Hey - does somebody know why i get a leak when i use this line of code ??? : [self setModules:[[aDictionary objectForKey:KEY_MODULES] mutableCopy]]; Thanks in advance pk ...
I'm using the following to render some text in a UIView. - (void) drawRect:(CGRect)rect { NSString* text = @"asdf asdf asdf asdf asdf asdf asdf"; CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(context, [[UIColor clearColor] CGColor]); CGContextFillRect(context, rect); CGCon...
I'm trying to get an iphone/ipad app startup screen set up. Currently on the ipad it shows the correct large version then switches to the smaller iphone image. Any ideas on why this would happen? In my plist file I have the UILaunchImageFile~ipad set up as iPad and the image files are iPad-Landscape.png and iPad-Portrait.png. They ar...
I've been struggling for ages trying to make a working PDF reader for iPhone/iPad, but the thing just won't stop eating memory. It seems that all the pages drawn with CGContextDrawPDFPage are cached internally and never released. I'm not the only one with this problem: http://lists.apple.com/archives/quartz-dev/2010/Apr/msg00025.html ...
On an iPad using Safari, go to this page: http://ifelse.org/projects/errors/viewport/test.html This is the Source: <html> <head> <title>Viewport Test</title> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <meta name="vi...
Hoping there is a way to do this. Would like to just display the border around the view, with no 40px title bar at the top. Possible? ...
This is probably a really dumb question, but I can't seem to figure it out. My iPad application supports landscape and portrait orientations -so far so good. but when I'm in landscape mode, if I switch from one view to another there's a little rotation animation, even though I didn't rotate the device. It is as if the UIView I'm loading ...
Hi everyone, For my job, I've been writing an iPad application that the user can enter data into, view some pictures, etc. It's been annoying me that I'm reaaaallly slow at writing in Obj-C and I find myself bogged down in the UI (an example would be I always have to put in a UITableView which is time consuming...) I think that I have a...
I need an image gallery solution which can be used with an simple API for uploading photos from the web as well as from the iPhone / iPod touch / iPad, and then view those photos on the web as well as on the mobile devices. Basically what I want to do is this: My cookbook app has recipes for yummy meals. I want to add an global image ga...
G'day guys, I'm building an iPad app at the moment and our designer has given us a view that has an image background and a tableview that covers a section of that background (it isn't transparent don't worry about that). Each cell contains information about stores. I've implemented it by looking at the smoothscrolling code from Loren Br...
Can I compile the same iPhone source code for iPad? ...
I'm developing a simple writing app for iPad. I'm trying to compute the pixel-position of the cursor in UITextView. I spend a few weeks to design this, but I still couldn't figure out to do it. In stackoverflow, Tony wrote one good algorithm to find the pixel-position of the cursor. http://stackoverflow.com/questions/2633379/pixel-pos...
I am currently opening a webpage in UIWebView and submitting a form which performs a query on the server side and youtube video is returned (if available). I have no say/control over the server side implementation. This webview works fine on iPhone/iPod, however, when I try to run the same app on iPad there is no response after submitti...