摘要:
[[UIApplication sharedApplication]setStatusBarHidden:YES withAnimation:UIStatusBarAnimationFade]; 或者在info.plit里面将status bar is initiallyhidden的键值改为YES两个的不同是 第二种方法直接启动的时候隐藏,第一种方法是启动后出现再隐藏 阅读全文
摘要:
1.新建一个类 继承自UIView重写UIView 里面的方法 CGRect bounds=[self bounds]; CGPoint center; center.x=bounds.origin.x+bounds.size.width/2.0; center.y=bounds.origin.y+bounds.size.height/2.0; float maxRadius=hypot(bounds.size.width, bounds.size.height)/2.0; CGContextRef content=UIGraphicsGetCurrentContext(); CGConte. 阅读全文