美文网首页
ios如何获取xib自动布局后视图的宽度和高度

ios如何获取xib自动布局后视图的宽度和高度

作者: ShineYangGod | 来源:发表于2017-02-25 14:34 被阅读232次
    • (void)viewDidLayoutSubviews {
      CGFloat width = _frequencyBgImage.frame.size.width;
      CGFloat height = _frequencyBgImage.frame.size.height;
      NSLog(@"width : %f height : %f ",width,height);
      }

    相关文章

      网友评论

          本文标题:ios如何获取xib自动布局后视图的宽度和高度

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