UITextView 文字莫名其妙垂直居中解决办法

if ([ self respondsToSelector : @selector (setAutomaticallyAdjustsScrollViewInsets:)]) {
       
self . automaticallyAdjustsScrollViewInsets = NO ;
    }

因为UITextView底层是UIScrollView,iOS7以上这个属性默认是YES.

你可能感兴趣的:(ios,垂直居中,文字,UITextView)