ipad

Which database should you use to program an iPhone/iPad application?

I am new to iPhone development and want to know which database you use to program an iPhone/iPad? I have heard its SQLite, are there any alternatives to this? The application I am programming is like an online shop however you can't buy products, only view their details. ...

How do you content manage an iPad catalogue?

I am programming an online iPad shop however you can't buy products, only view their details. I had part 1 of this question answered here http://stackoverflow.com/questions/3501768/which-database-should-you-use-to-program-an-iphone-ipad-application Part 2 is this. The catalogue must be fast, so the database and images it displays must...

Framework or sample for encyclopedia-style application for iPad/iPhone

My employer own a large amount of exclusive content which is currently presented through the web. The content is mostly text, but there are also some videos. They want to make this available offline through a number of iPad/iPhone applications (tailored for a particular audience). I've already discussed the easier option of making the we...

iPhone: 'Linking' between two sub-view controllers

Here's my view controller hierarchy: | [A] | ---- [A1] | ---- [A2] One accesses view controllers A1 and A2 by tapping A1 and A2 cells respectively within view controller A. Say I have tapped through to A1, and within that view controller I press a button which brings me straight through to A2, how do I: Remove A1 as the visible vie...

if statement inside while loop. Why is it doing this?

I am using this: //if in landscape mode while(window.orientation == 90 || window.orientation == -90) { if(!$('#page' + hiddenNextPage).hasClass('showUp')) { $('#page' + hiddenNextPage).addClass('showUp'); $('#page' + hiddenNextPage).css('margin-left', '300px'); ...

autoresizingMask for fixed margin sizes

In a view containing several subviews, one of the subviews should remain a fixed, non-zero distance from the top and bottom of the superview. In these images, this view is shown in gray: According to the documentation, this view should have a mask of UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth. However, this c...

TableView help pushing a custom view

Hello again, So I am trying to simple traverse to the next level of a table view by doing this: - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { if (indexPath.row == 1) { FiltersController *aFiltersCont = [[FiltersController alloc] init]; aFiltersCont.displayedFilters = [appD...

Scaling UILabel text with the parent view

I have a UILabel that is a subview of a larger UIView. Is there a way to keep the text inside the UILabel proportional to the parent UIView so that when the parent changes size, either smaller or larger, the font size for the text in the UILabel will grow and shrink proportionally? ...

Lazy Loading UIImages from files without blocking main thread?

What's a decent way to load UIImages on demand without blocking the main thread? Context: I have a couple thousand images on a wall that I can scroll through. Obviously it's not feasible to just load all the UIImages, so right now I'm just lazy loading the ones that are getting displayed, and then releasing them when they're no longer n...

iPad - how should I distribute offline web content for use by a UIWebView in application?

I'm building an application that needs to download web content for offline viewing on an iPad. At present I'm loading some web content from the web for test purposes and displaying this with a UIWebView. Implementing that was simple enough. Now I need to make some modifications to support offline content. Eventually that offline content ...

iOS: How to make a secure HTTPS connection to pass credentials?

I am creating my first iPad app. I have a web application that I would like to authenticate against and pull data from in a RESTful way. If you open up the URL in the browser (https://myapp.com/auth/login), you will get a form to enter your username and password. I was thinking I could set the login credentials in the post data of the r...

2D object rotation for ipad

Hi guys I have drawn a 2D triangle on the my EAGLView using openGL coding. Now my requirement is like, user can rotate this triangle 360 degree by his finger's motion. My code is working pretty well but still not perfect. My triange is getting stucks for few pixels at some edges. Here is sample of my rotation code : GLfloat tot...

Maximum size of a popover

Hi there Could anyone confirm me the maximum size of a popoverview? Thanks ...

how to use custom font in iphone application

how to use custom font in iphone application? i need to use in custom font in my iphone / ipad appliaction. Can i embed custom font in my application? ...

Maximum amt of memory that can be leaked + iPad

Hi guys , was wondering what is the maximum amt of leaks an app can have? Im currently testing my app with the instuments and have a few leaks here and there but the app wont crash. Is it anywhere near 1mb? ...

Animated UIView frame change causes short flash of previous content before re rendering

I've got several UIViews that have a layer class of CATiledLayer because they need to be zoomed using UIScrollViews. I use Quartz to render some PDF pages inside said UIViews. Everything is fine until I try to animate said views frames on page rotation. The animation is fine, the contents of the view gets scaled quickly and cheaply to m...

Touch a file - update it's modified time stamp

Hello, Is there an efficient way to update the last modified property of a file on the iPad's filesystem i.e. the unix touch command? I've had a look at NSFileManager but no luck. ...

How to use MonoTouch to use C# application for iPad?

How to use MonoTouch to use C# application for iPad? ...

How to check programatically if an App is installed?

I am developing an iPhone application which will install few third party applications in an enterprise. I have the information about the bundle IDs. Is there a way to check if the application is already installed, using some system APIs? Currently the application gets installed again, overwriting the current installation. I need to preve...

Can I port my old C# desktop application on IPad using MonoTouch?

Can I port my old C# desktop application on IPad using MonoTouch? ...