UIButton上使用UIEdgeInsetsMaketitle 跟图片对齐
http://blog.csdn.net/yanxiaoqing/article/details/7230660
contentSize、contentInset和contentOffset区别
UIView层次管理 放到最上层 放到最下层
将一个UIView显示在最前面只需要调用其父视图的 bringSubviewToFront()方法。
将一个UIView层推送到背后只需要调用其父视图的 sendSubviewToBack()方法。
将一个UIView层推送到背后只需要调用其父视图的 sendSubviewToBack()方法。
遍历window的所有子视图
for (UIView *view inself.window.subviews) {
if ([view isKindOfClass:[QzoneInternalGuideclass]]) {
[self.windowbringSubviewToFront:view];
break;
}
}
for (UIView *view inself.window.subviews) {
if ([view isKindOfClass:[QzoneInternalGuideclass]]) {
[self.windowbringSubviewToFront:view];
break;
}
}
一些效果
1.添加阴影
self.layer.shadowOffset = CGSizeMake(-5, 3);
self.layer.shadowOpacity = 0.4;
self.layer.shadowColor = [UIColor blackColor].CGColor;
2.添加圆角
btn.layer.cornerRadius = 8;btn.layer.masksToBounds = YES;//使用边界来做遮罩
设置密文
[self.originalPwd setSecureTextEntry:YES];