一、 给navigation Bar 设置 title 颜色
UIColor *whiteColor = [
UIColor whiteColor];
NSDictionary *dic = [
NSDictionary dictionaryWithObject:whiteColor forKey:
NSForegroundColorAttributeName];
[
self.navigationController.navigationBar setTitleTextAttributes:dic];
二、 修改textField的placeholder的字体颜色、大小
self.textField.placeholder = @
"username is in here!";
[
self.textField
setValue:[UIColor redColor]
forKeyPath:@
"_placeholderLabel.textColor"];
[
self.textField
setValue:[UIFont boldSystemFontOfSize:
16]
forKeyPath:@
"_placeholderLabel.font"];
三、IOS开发-关闭/收起键盘方法总结
1、点击Return按扭时收起键盘
- (BOOL)
textFieldShouldReturn:(UITextField *)
textField
{
return [textField resignFirstResponder];
}
2、点击背景View收起键盘
[self.view endEditing:YES]
3、你可以在任何地方加上这句话,可以用来统一收起键盘
[[[UIApplication sharedApplication] keyWindow] endEditing:YES]
四、ios7 statusbar 文字颜色
iOS7上,默认status bar字体颜色是黑色的,要修改为白色的需要在infoPlist里设置UIViewControllerBasedStatusBarAppearance为NO,然后在代码里添加:
[application setStatusBarStyle:UIStatusBarStyleLightContent];
iOS加载启动图的时候隐藏statusbar
只需需要在info.plist中加入Status bar is initially hidden 设置为YES就好
五、iOS 开发,工程中混合使用 ARC 和非ARC
Xcode 项目中我们可以使用 ARC 和非 ARC 的混合模式。
如果你的项目使用的非 ARC 模式,则为 ARC 模式的代码文件加入 -fobjc-arc 标签。
如果你的项目使用的是 ARC 模式,则为非 ARC 模式的代码文件加入 -fno-objc-arc 标签。
添加标签的方法:
打开:你的target -> Build Phases -> Compile Sources.双击对应的 *.m 文件在弹出窗口中输入上面提到的标签 -fobjc-arc / -fno-objc-arc点击 done 保存
转载请注明原文地址: https://ju.6miu.com/read-11822.html