美文网首页
找到导航栏下面灰线

找到导航栏下面灰线

作者: 成语笔记 | 来源:发表于2016-11-18 11:23 被阅读10次

    - (UIImageView *)findHairlineImageViewUnder:(UIView *)view

    {

    if ([view isKindOfClass:UIImageView.class] && view.bounds.size.height <= 1.0)

    {

    return (UIImageView *)view;

    }

    for (UIView *subview in view.subviews)

    {

    UIImageView *imageView = [self findHairlineImageViewUnder:subview];

    if (imageView)

    {

    return imageView;

    }

    }

    return nil;

    }

    相关文章

      网友评论

          本文标题:找到导航栏下面灰线

          本文链接:https://www.haomeiwen.com/subject/wjwjpttx.html