用图片替换导航栏的文字

来源:互联网 发布:stylewriter for mac 编辑:程序博客网 时间:2024/04/29 12:37

for (UIView *view in self.navigationController.navigationBar.subviews) {

        

        if([view isKindOfClass:[NSClassFromString(@"UINavigationItemView") class]]) {

            for (UIView *view1 in view.subviews) {

                NSLog(@"~~~~~~~~~~~~~~~~~~~~%@", view1);

                

                UILabel *label1 = (UILabel *)view1;

                UIImageView *img = [[UIImageView alloc] initWithFrame:label1.bounds];

                img.center = label1.center;

                img.image = [UIImage imageNamed:@"imagename.jpg"];

                [label1 addSubview:img];

                

            }

        }

    }

1 0
原创粉丝点击