po [self.view recursiveDescription];

显示如下

<__NSArrayM 0x7b920e50>(
<UITableViewWrapperView: 0x7b933960; frame = (0 0; 320 568); gestureRecognizers = <NSArray: 0x7b933f20>; layer = <CALayer: 0x7b933c60>; contentOffset: {0, 0}; contentSize: {320, 568}>,
<_UITableViewCellSeparatorView: 0x7bd57cf0; frame = (16 307.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd4b390>>,
<_UITableViewCellSeparatorView: 0x7bd4a070; frame = (16 351.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd4d410>>,
<_UITableViewCellSeparatorView: 0x7bd5ea20; frame = (16 395.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd4d7b0>>,
<_UITableViewCellSeparatorView: 0x7bd5c500; frame = (16 439.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd4e6e0>>,
<_UITableViewCellSeparatorView: 0x7bd529b0; frame = (16 483.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd5b650>>,
<_UITableViewCellSeparatorView: 0x7bd4d350; frame = (16 527.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd5d9c0>>,
<_UITableViewCellSeparatorView: 0x7bd5ddd0; frame = (16 571.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd5e7c0>>,
<_UITableViewCellSeparatorView: 0x7bd5de90; frame = (16 615.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd5bd40>>,
<_UITableViewCellSeparatorView: 0x7bd54ac0; frame = (16 659.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd4bf60>>,
<_UITableViewCellSeparatorView: 0x7bd56c40; frame = (16 703.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd5d110>>,
<_UITableViewCellSeparatorView: 0x7bd5c6c0; frame = (16 747.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd5c740>>,
<_UITableViewCellSeparatorView: 0x7bd5ecc0; frame = (16 791.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd5eba0>>,
<_UITableViewCellSeparatorView: 0x7bd56170; frame = (16 835.5; 304 0.5); autoresize = W; layer = <CALayer: 0x7bd5ec00>>,
<_UITableViewCellSeparatorView: 0x7bd561f0; frame = (16 879.5; 304 0.5); autoresize = W; layer =<CALayer:0x7bd56270>>,<UIImageView:0x7bd52ea0; frame =(317.5561;2.57); alpha =0; opaque = NO; autoresize = LM; userInteractionEnabled = NO; layer =<CALayer:0x7bd52f20>>,<UIImageView:0x7bd52620; frame =(313565.5;72.5); alpha =0; opaque = NO; autoresize = TM; userInteractionEnabled = NO; layer =<CALayer:0x7bd52940>>)
posted @ 2015-06-07 22:36 LeeTVin 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 修改UIButton状态,注释NSLog(@"text1:%@",_btn.titleLabel.text);这段结果很不可思议_btn.titleLabel.text= [NSStringstringWithFormat:@"aaaaaa%i",i];NSLog(@"text1:%@",_btn.... 阅读全文
posted @ 2015-05-22 11:06 LeeTVin 阅读(432) 评论(0) 推荐(0) 编辑
摘要: UI一直觉得俺们iOS的不好看,so模仿微信的来。font:navigation title font:19navigation left:16cell title:16 or 17cell detail:14cell time:12tabbar title:10search text:14text... 阅读全文
posted @ 2015-04-02 15:20 LeeTVin 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 支持iOS搜狗输入法和自动关联表情(如输入hehe,出来的表情)注意:Swift的textView.text!=disable_emoji(textView.text)在OC里面用 ![xxx isEqualString:bbb]转帖保留(谢谢):http://www.cnblogs.com/Lee... 阅读全文
posted @ 2015-04-01 15:57 LeeTVin 阅读(2595) 评论(0) 推荐(0) 编辑
摘要: 如果对你有用,记得留言哟... //弹出视图 UIStoryboard *secondStoryBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil]; reviewViewController2* revie... 阅读全文
posted @ 2014-11-20 14:40 LeeTVin 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 不完美解决方案...(黑屏1秒恢复...)原创保留:http://www.cnblogs.com/Leetvin/p/3932865.html原因:wap回调 如果加入UINavigationController就会黑屏#if ! __has_feature(objc_arc)self.viewCo... 阅读全文
posted @ 2014-08-24 15:51 LeeTVin 阅读(1476) 评论(0) 推荐(0) 编辑
摘要: 证书问题,本来可以的突然不行了,强制退出xcode,再次就可以了,如果你这边还不行的话,可以试着重新导入证书到xcode 阅读全文
posted @ 2014-06-30 15:03 LeeTVin 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 因为我在View1中import了View2,又在View2中的ViewA里import了View1,而ViewA和ViewB是包含在View2中的。1.两个类的头文件相互引用是会报错误的,因为.h文件他是接口,在预编译的时候就会报错的,你可以在报错的那个类中加上@Class ***2.我自己使用了... 阅读全文
posted @ 2014-06-30 11:48 LeeTVin 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 加入了一个字体发现无效最主要的原因是引用的时候fontwithname用的时文件名,而不是字体的Family name要使用字体的Family name,而不是字体的文件名,弄错了将无法看到效果。 NSArray *familyNames =[[NSArray alloc]initWithArray... 阅读全文
posted @ 2014-06-03 15:18 LeeTVin 阅读(874) 评论(0) 推荐(0) 编辑
摘要: 有2种方法可以设置TextView文字居中:一:在xml文件设置:android:gravity="center"二:在程序中设置:m_TxtTitle.setGravity(Gravity.CENTER);备注:android:gravity和android:layout_gravity的区别在于前者对控件内部操作,后者是对整个控件操作。例如:android:gravity="center"是对textView中文字居中 android:layout_gravity="center"是对textview控件在整个布局中居中其实很容易 阅读全文
posted @ 2014-01-17 19:10 LeeTVin 阅读(366) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示