oblApps
oblApps

Reputation: 65

image texture on UIView background. How big is too big?

Do you guys think loading a 750KB png as a background everytime a UIViewController is presented is a problem?

I am noticing some small jerky movements, but nothing too bad. Interestingly enough, the device I am noticing this on, is an iPhone 4. On 3GS the movement is 100% fluid!

I am talking about the transitions (flip horizontal/cross disolve etc) that happen when a new UIViewController is presented as a modal form.

Upvotes: 2

Views: 1625

Answers (1)

wattson12
wattson12

Reputation: 11174

I'd say its way to big to be including in your app. You should find a repeatable section of the texture, include that, and then set the background colour to

[UIColor colorWithPatternImage:repeatableImage];

Upvotes: 2

Related Questions