开发者

What is the best way to create multi-theme application

开发者 https://www.devze.com 2023-02-15 06:45 出处:网络
I need to create an application that should have several themes. It means that for each theme we use different set of images. The theme should be changed without full reload of all view controllers (j

I need to create an application that should have several themes. It means that for each theme we use different set of images. The theme should be changed without full reload of all view controllers (just change the images). The themes could be added via In app purchases so they should not be开发者_如何学Python hardcoded.

I also want to use Interface Builder to create my views.

Question: what is the best way to do that?


On MyAppNotificationUIThemeChanged every controller has to retrieve and set images for every UIImageView in it's main view. I can think of 2 approaches for doing this:

1) Brute force. Something like this:

self.imageView1.image = [self currentThemeImage:@"someController_image1.png"];
self.imageView2.image = [self currentThemeImage:@"someController_image2.png"];

2) Automated approach.

NSArray *imageViews = [self fetchAllImageViews];
foreach (UIImageView *iv in imageViews) {
  iv.image = [self currentThemeImageForTag:iv.tag];
}

where currentThemeImageForTag: is something like this:

- (UIImage*)currentUIThemeImageForTag:(NSUInteger)imageTag {
  return [self currentUIThemeImage:[NSString stringWithFormat:@"%@_%u.png", NSStringFromClass([self class]), imageTag]];
}

I also suggest to use NSBundle to package theme images and other resources.

Update:

I chose NSBundle only because of it's cool methods like pathForResource:ofType: and such and also ability to support localization. You can create bundle with XCode (just look under Mac OS X -> Framework&Library section in new project dialog). Put your images in Resources, remove liks to any frameworks (there is no code anyway), build and that's it. In your app load bundle with [NSBundle bundleWithPath:pathToDownloadedBundle]. Beware though: I don't know if Apple allows to download bundles and use it's content in app. All I can guarantee is that it works on simulator.


I would suggest the approach that I detail in my answer here:

Is there a simple way to set a default font for the whole app?

You could have view controllers in your app ask a ThemeApplicator class to style them when necessary. It would do this by setting the correct background image, that sort of thing. You can still use IB to build your views; just don't set a background in IB (or set a default background). The key is that you programmatically update the background later.


Look at Three20 project, especially at Three20Style.

0

精彩评论

暂无评论...
验证码 换一张
取 消