PapuuWiki
iPhone/UIKit/¥¹¥Ë¥Ú¥Ã¥È
¤ò¥Æ¥ó¥×¥ì¡¼¥È¤Ë¤·¤ÆºîÀ®
³«»Ï¹Ô:
*¥¿¥Ö¤ÎÇØ·Ê¿§Êѹ¹
#pre{{
if ([[[self tabBarController] tabBar] respondsToSelec...
{
// iOS5¤Ç¤Ï¤³¤Á¤é¤Ç¥¿¥Ö¤ÎÇØ·Ê¿§Êѹ¹
[[[self tabBarController] tabBar] setSelectedImag...
[[[self tabBarController] tabBar] setTintColor:[U...
[[UITabBar appearance] setSelectedImageTintColor:...
[[UITabBar appearance] setTintColor:[UIColor colo...
} else {
// iOS4¤Ç¤Ï¤³¤Á¤é¤Ç¥¿¥Ö¤ÎÇØ·Ê¿§Êѹ¹
CGRect frame = CGRectMake(0.0, 0.0, self.view.bou...
UIView *v = [[[UIView alloc] initWithFrame:frame]...
[v setBackgroundColor:[UIColor colorWithRed:0.4 g...
[v setAlpha:1.0];
[[[self tabBarController] tabBar] addSubview:v];
[[[self tabBarController] tabBar] sendSubviewToBa...
}
}}
½ªÎ»¹Ô:
*¥¿¥Ö¤ÎÇØ·Ê¿§Êѹ¹
#pre{{
if ([[[self tabBarController] tabBar] respondsToSelec...
{
// iOS5¤Ç¤Ï¤³¤Á¤é¤Ç¥¿¥Ö¤ÎÇØ·Ê¿§Êѹ¹
[[[self tabBarController] tabBar] setSelectedImag...
[[[self tabBarController] tabBar] setTintColor:[U...
[[UITabBar appearance] setSelectedImageTintColor:...
[[UITabBar appearance] setTintColor:[UIColor colo...
} else {
// iOS4¤Ç¤Ï¤³¤Á¤é¤Ç¥¿¥Ö¤ÎÇØ·Ê¿§Êѹ¹
CGRect frame = CGRectMake(0.0, 0.0, self.view.bou...
UIView *v = [[[UIView alloc] initWithFrame:frame]...
[v setBackgroundColor:[UIColor colorWithRed:0.4 g...
[v setAlpha:1.0];
[[[self tabBarController] tabBar] addSubview:v];
[[[self tabBarController] tabBar] sendSubviewToBa...
}
}}
¥Ú¡¼¥¸Ì¾: