iOS-App登录界面常用API

[iOS 判断字符串中含有某个字符串 rangeOfString]
//判断useTextFileld.text 是否含有txt 
if([useTextFileld.text rangeOfString:@"txt"].location !=NSNotFound)
//_roaldSearchText
 {
 NSLog(@"yes"); } else { NSLog(@"no"); }
[键盘样式风格有关设置]
一、键盘风格   
UIKit框架支持8种风格键盘。
typedef  **enum ** {  
    UIKeyboardTypeDefault,                 // 默认键盘:支持所有字符   
    UIKeyboardTypeASCIICapable,            // 支持ASCII的默认键盘   
    UIKeyboardTypeNumbersAndPunctuation,   // 标准电话键盘,支持+*#等符号   
    UIKeyboardTypeURL,                     // URL键盘,有.com按钮;只支持URL字符   
    UIKeyboardTypeNumberPad,               //数字键盘  (控制台打印的东西可以不用管)    
    UIKeyboardTypePhonePad,                // 电话键盘
    UIKeyboardTypeNamePhonePad,            // 电话键盘,也支持输入人名字   
    UIKeyboardTypeEmailAddress,            // 用于输入电子邮件地址的键盘   
} UIKeyboardType;  

用法用例:
textView.keyboardtype = UIKeyboardTypeNumberPad;

二、键盘外观
typedef  **enum ** {  
    UIKeyboardAppearanceDefault,     // 默认外观:浅灰色   
    UIKeyboardAppearanceAlert,       //深灰/石墨色   
} UIKeyboardAppearance;  

用法用例:
textView.keyboardAppearance=UIKeyboardAppearanceDefault;

三、回车键(右下角的按键)
typedef  enum  {  
    UIReturnKeyDefault,  //默认:灰色按钮,标有Return
    UIReturnKeyGo,  //标有Go的蓝色按钮
    UIReturnKeyGoogle,  //标有Google的蓝色按钮,用于搜索
    UIReturnKeyJoin,  //标有Join的蓝色按钮
    UIReturnKeyNext,  //标有Next的蓝色按钮
    UIReturnKeyRoute,  //标有Route的蓝色按钮
    UIReturnKeySearch,  //标有Search的蓝色按钮
    UIReturnKeySend,  //标有Send的蓝色按钮
    UIReturnKeyYahoo,  //标有Yahoo!的蓝色按钮,用于搜索
    UIReturnKeyDone,  //标有Done的蓝色按钮
    UIReturnKeyEmergencyCall,  //紧急呼叫按钮
} UIReturnKeyType;  

用法用例:
textView.returnKeyType=UIReturnKeyGo;

四、自动大写
typedef  **enum ** {  
    UITextAutocapitalizationTypeNone,  //不自动大写   
    UITextAutocapitalizationTypeWords,  //单词首字母大写   
    UITextAutocapitalizationTypeSentences,  //句子首字母大写   
    UITextAutocapitalizationTypeAllCharacters,  //所有字母大写   
} UITextAutocapitalizationType;  

用法用例:
textField.autocapitalizationType = UITextAutocapitalizationTypeWords;

五、自动更正
typedef  **enum ** {  
    UITextAutocorrectionTypeDefault, //默认   
    UITextAutocorrectionTypeNo, //不自动更正   
    UITextAutocorrectionTypeYes, //自动更正   
} UITextAutocorrectionType;  

用法用例:
textField.autocorrectionType = UITextAutocorrectionTypeYes;

六、安全文本输入(密码是隐藏的)
textView.secureTextEntry=YES;
开启安全输入主要是用于密码或一些私人数据的输入,此时会禁用自动更正和自此缓存
[IOS开发之UIFont应用](http://blog.csdn.net/sanpintian/article/details/7397596)
我们在开发中很多时候要设置UIlabel,UIbutton,UItextfield的字体,这个时候我们就需要用到UIFont,下面简单介绍一下UIFont的用法,仅供参考。

UIFont用于获取和设置字体信息。这个类提供用于输出的字体的属性和字型信息。我们可以把其对象像参数一样传入函数中。
一般而言我们不需要用alloc,int方法初始化UIFont对象,我们用UIFont大部分的时候是用其类方法,这些方法会设置对象的属性,且返回一个字体对象。

例如:

    _centerLabel = [[UILabel alloc] initWithFrame:CGRectMake(115, 12, 85, 21)];
    _centerLabel.text = @"经销商查询";
    [_centerLabel setFont:[UIFont fontWithName:@"Helvetica" size:17.0]];
    [self.view addSubview:_centerLabel];

下面两个函数创建字体:
+fontWithName:(NSString *)fontName   size:(CGFloat) fontSize   创建并且返回一个指定字体类型和大小的字体对象,fontName指定字体集的名字和风格(例如宋体,楷书等这一类型的),fontsize设置字体的大小。
-fontWithSize:返回字体的大小
上面我们提到我们需要设置字体集,在IOS系统中我们用到的字体包含一下几种 :
Font Family: American Typewriter( AmericanTypewriter,AmericanTypewriter-Bold)
Font Family: AppleGothic(AppleGothic)
Font Family: Arial(ArialMT,Arial-BoldMT,Arial-BoldItalicMT,Arial-ItalicMT)
Font Family: Arial Rounded MT Bold(ArialRoundedMTBold)
Font Family: Arial Unicode MS(ArialUnicodeMS)
Font Family: Courier(Courier,Courier-BoldOblique,Courier-Oblique,Courier-Bold)
Font Family: Courier New(CourierNewPS-BoldMT,CourierNewPS-ItalicMT,CourierNewPS-BoldItalicMT,CourierNewPSMT)
Font Family: DB LCD Temp (DBLCDTempBlack)
Font Family: Georgia( Georgia-Bold, Georgia,Georgia-BoldItalic,Georgia-Italic)
Font Family: Helvetica(Helvetica-Oblique,Helvetica-BoldOblique,Helvetica,Helvetica-Bold)            默认字体Font Family: Helvetica Neue(HelveticaNeue,HelveticaNeue-Bold)Font Family: Hiragino Kaku Gothic **** W3(HiraKakuProN-W3)
Font Family: Hiragino Kaku Gothic **** W6(HiraKakuProN-W6)
Font Family: Marker Felt( MarkerFelt-Thin)
Font Family: STHeiti J  (STHeitiJ-Medium,STHeitiJ-Light)
Font Family: STHeiti K( STHeitiK-Medium, STHeitiK-Light)
Font Family: STHeiti SC(STHeitiSC-Medium, STHeitiSC-Light)
Font Family: STHeiti TC(STHeitiTC-Light,STHeitiTC-Medium)
Font Family: Times New Roman(TimesNewRomanPSMT,TimesNewRomanPS-BoldMT, TimesNewRomanPS-BoldItalicMT, TimesNewRomanPS-ItalicMT)
Font Family: Trebuchet MS( TrebuchetMS-Italic,TrebuchetMS,Trebuchet-BoldItalic,TrebuchetMS-Bold)Font Family: Verdana( Verdana-Bold,Verdana-BoldItalic, Verdana,Verdana-Italic)Font Family: Zapfino( Zapfino)

+ (UIFont *)systemFontOfSize:(CGFloat)fontSize    使用标准的接口返回指定大小的字体对象。
+ (CGFloat)systemFontSize    返回标准的系统字体大小。
+ (UIFont *)boldSystemFontOfSize:(CGFloat)fontSize   返回字体对象使用了标准接口来指定字体大小附加黑体风格。
+ (CGFloat)buttonFontSize 返回按钮使用标准字体。
+ (NSArray *)familyNames  返回系统可用字体集名称的数组。一个NSString型数组对象。每一个元素包含了字型集名称。字型集的名称相当于字型的基础名称。如 Times New Roman.你可以输入返回的字符串到 fontNamesForFamilyName: 方法来取得可用的字型集的名称。然後你可以用这些恰当的名称去取得字体对象。
+ (NSArray *)fontNamesForFamilyName:(NSString *)familyName                      )familyName字体集的名称。使用 familyNames 方法取得系统中的一个字体集的名称。

//修改NavigationBar

  [[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]];
  [[UINavigationBar appearance] setTitleTextAttributes:
  [NSDictionary dictionaryWithObjectsAndKeys:[UIColor blackColor],
  NSForegroundColorAttributeName, 
  [UIFont fontWithName:@ "STHeiti TC" size:16.0], NSFontAttributeName, nil]];

实现对textField输入到一定字符的时候Button变色
Button变色.gif
//用到监听文本框的方法
  [[NSNotificationCenter defaultCenter] addObserver:self 
selector:@selector(registerTextFieldTextDidChangeNotification:) 
name:UITextFieldTextDidChangeNotification object:nil];

-(void)registerTextFieldTextDidChangeNotification:(NSNotification *)natification{
   
    
    if (self.textFieldRegister.text.length >= 11) {
        
    self.textFieldRegister.text = [NSString stringWithFormat:@"%@",[self.textFieldRegister.text  substringToIndex:11]];
    }
    
    if (self.textFieldRegister.text.length == 11) {
        
        self.buttonGain.backgroundColor = [UIColor colorWithRed:1.000 green:0.400 blue:0.400 alpha:1.000];

         [self.buttonGain addTarget:self action:@selector(handleSend:) forControlEvents:UIControlEventTouchUpInside];
    }
   
    else{
        self.buttonGain.backgroundColor = [UIColor colorWithRed:1.000 green:0.400 blue:0.400 alpha:0.3];
        [self.buttonGain removeTarget:self action:@selector(handleSend:) forControlEvents:UIControlEventTouchUpInside];
    }
    
}

[ios 限制只能输入字母和数字]
//数字#define NUM @"0123456789"
//字母#define ALPHA @"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"//数字和字母#define ALPHANUM @"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
//UITextField代理方法
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{  
  NSCharacterSet *cs;
//让哪个实现这个限制
       if (textField == self.textFieldRegister) {
        cs = [[NSCharacterSet characterSetWithCharactersInString:NUMBERS]invertedSet];
    }
    else{
        
         cs = [[NSCharacterSet characterSetWithCharactersInString:kAlphaNum]invertedSet];
        
    }
    
NSString *filtered = [[string componentsSeparatedByCharactersInSet:cs]componentsJoinedByString:@""]; //按cs分离出数组,数组按@""分离出字符串

    BOOL canChange = [string isEqualToString:filtered];

    return canChange;
    
}
[触发键盘右下角的return的事件, 切换到下一个文本框]
return触发事件.gif
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{

    if (textField == self.textFieldUser) {
        [self.textFieldPassword becomeFirstResponder];
    }
    else if (textField == self.textFieldPassword){
        NSLog(@"GO");
    }
    
    return YES;
}
[改变self.navigationItem.rightBarButtonItem的字体颜色]
 [self.navigationItem.rightBarButtonItem setTintColor:[UIColor colorWithWhite:0.549 alpha:1.000]];
 
定制文本框光标颜色
_usernameTextField.tintColor = [UIColor greenColor];
设置button背景图片的颜色
[backButton setImage:[[UIImage imageNamed:@"back.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate] forState:UIControlStateNormal];
backButton.imageView.tintColor = [UIColor blackColor];
改变searchBar的背景图
 [_searchBar setSearchFieldBackgroundImage:
[UIImage imageNamed:@"gray"] forState:UIControlStateNormal];
更改NavigationBar下划线颜色
  if ([self.navigationController.navigationBar respondsToSelector:@selector( setBackgroundImage:forBarMetrics:)]){
        NSArray *list=self.navigationController.navigationBar.subviews;
        for (id obj in list) {
            if ([obj isKindOfClass:[UIImageView class]]) {
                UIImageView *imageView=(UIImageView *)obj;
                NSArray *list2=imageView.subviews;
                for (id obj2 in list2) {
                    if ([obj2 isKindOfClass:[UIImageView class]]) {
                        UIImageView *imageView2=(UIImageView *)obj2;
                        imageView2.hidden=YES;
                    }
                }
            }
        }
    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容