iOS各种代码

1. button字体位置

我们首先要使用

button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft; 这行代码,把按钮的内容(控件)

的对齐方式修改为水平左对齐,但是这们会紧紧靠着左边,不好看,

所以我们还可以修改属性:

button.titleEdgeInsets = UIEdgeInsetsMake(0, 10, 0, 0);

这行代码可以让按钮的内容(控件)距离左边10个像素,这样就好看多了

2.ViewController跳转界面的几种方法

模态跳转(Modal)

模态:一个普通的视图控制器一般只有模态跳转的功能,这个方法是所有视图控制器对象都可以用的。

用跳转 [self presentViewController:vc animated:YES completion:nil];

用[self dismissViewControllerAnimated:YES completion:nil]; 返回

通过导航控制器UINavigationController

用 [self.navigationController pushViewController:vc animated:YES];跳转

用[self.navigationController popViewControllerAnimated:YES];返回前一页

用[self.navigationController popToRootViewControllerAnimated:YES]; 返回root页

用[self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:1] animated:YES]; 返回想要的制定的前页

通过UITabBarController

tabbar控制器,同样是常用的界面切换方式,一般作为app的根界面的视图控制器。其实与其说UITabBarController的界面跳转,不如说是界面切换,因为UITabBarController的界面跳转其实就是UITabBarController的viewControllers数组中的几个界面切换。只要设置好了UITabBarController的viewControllers数组就可以了。也可以工厂自定义tabbar,通过selectedItem来控制。

结构也类似NavigationController

3 UITextField  键盘类型

UIKeyboardTypeDefaultDefault默认键盘,支持所有字符

UIKeyboardTypeASCIICapableASCII Capable支持ASCII的键盘

UIKeyboardTypeNumbersAndPunctuationNumbers and Punctuation数字和标点符号键盘

UIKeyboardTypeURLURL用于输入URL的键盘

UIKeyboardTypeNumberPadNumber Pad数字键盘(只有数字)

UIKeyboardTypePhonePadPhone Pad电话键盘(数字、+*#)

UIKeyboardTypeNamePhonePadName Phone Pad支持输入人名的电话键盘

UIKeyboardTypeEmailAddressE-mail Address用于输入邮件地址的键盘

UIKeyboardTypeDecimalPadDecimal Pad小数键盘(比数字键盘多一个小数点)

UIKeyboardTypeTwitterTwitter一种优化的推特文本输入键盘

UIKeyboardTypeWebSearchWeb Search略(iOS7.0以后才支持)

UIKeyboardTypeAlphabet等于UIKeyboardTypeASCIICapable已经过时

代码中的用法:

textField.keyboardType = UIKeyboardTypeNumberPad;

随时想到随时添加, 如有不足, 欢迎评论指正.

你可能感兴趣的:(iOS各种代码)