Changing font size of tabbaritem

后端 未结 10 1812
忘掉有多难
忘掉有多难 2020-11-30 06:18

Is it possible to change the font size of tabs?

10条回答
  •  长情又很酷
    2020-11-30 07:04

    Actually there is a way.

        NSMutableArray *tabBarItems = [[[[[self.view subviews] objectAtIndex:1] subviews] mutableCopy] autorelease];
    
    for (int item = 0; item < [tabBarItems count]; item++) {
        for (int subview = 0; subview < [[[tabBarItems objectAtIndex:item] subviews] count]; subview++) {
            for (int item = 0; item < [tabBarItems count]; item++)  {
                for (int subview = 0; subview < [[[tabBarItems objectAtIndex:item] subviews] count]; subview++)  {
                    if ([[[[tabBarItems objectAtIndex:item] subviews] objectAtIndex:subview] isKindOfClass:NSClassFromString(@"UITabBarButtonLabel")]) 
                        [[[[tabBarItems objectAtIndex:item] subviews] objectAtIndex:subview] setFont:[UIFont systemFontOfSize:6.0f]];
                }
            }
        }
    }
    

提交回复
热议问题