English 中文(简体)
UITab BarController的表格之间分享背景
原标题:Share background view between tabs on a UITabBarController

是否有可能在UITab BarController的表格之间有同样的背景,而不必就所有观点确定同样的背景? 我想在这样的背景下提出一种看法,即定期进行非常简短的非资源密集的估算。 在开具表格时,我像这种im语一样顽固存在。 我读到了UINavigationControllers如何做这件事,但发现UITab BarController有任何ti。

问题回答

我创立了一个UITab BarController Addition类别,允许你这样做。 牢记所选的《国际调查评论》管理员需要透明,以便了解背景形象。

/UITab BarController+CC Additions.h

@interface UITabBarController (CCAdditions) 

- (void) setBackgroundImage:(UIImage *)i;

@end

页: 1

#import "UITabBarController+CCAdditions.h"

@implementation UITabBarController (CCAdditions)

- (void) setBackgroundImage:(UIImage *)i {
    UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,320,480)];
    imageView.backgroundColor = [UIColor colorWithPatternImage:i];  
    [[self view] addSubview:imageView];
    [[self view] sendSubviewToBack:imageView];
    [[self view] setOpaque:NO];
    [[self view] setBackgroundColor:[UIColor clearColor]];
    [imageView release];
}

@end

a a

#import "UITabBarController+CCAdditions.h"


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    
    [tabBarController setBackgroundImage:[UIImage imageNamed:@"icon.png"]];
    [tabBarController.view setNeedsDisplay];
    return YES;
}

我使用色人种,而不是背景 图像,因为它允许在必要时使用

创建主轴 届时将从该控制员那里获得背景的主计长加上具有透明背景的其他观点,你也可以把你的背景放在你的申请窗口上。

页: 1





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签