码迷,mamicode.com
首页 >  
搜索关键字:uitextfield    ( 915个结果
有关两个UITextField执行时的顺序与方法
1、- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField; 2、- (void)textFieldDidBeginEditing:(UITextField *)textField; 3、- (void)text...
分类:其他好文   时间:2015-01-24 21:13:55    阅读次数:133
UITextField的各种属性方法介绍
定义一个TextFielduserNameField = [[UITextField alloc] initWithFrame:CGRectMake(userNameImg.frame.origin.x+30,userNameImg.frame.origin.y, 165, 40)];userNam...
分类:其他好文   时间:2015-01-23 12:50:17    阅读次数:187
关闭键盘
1、点击固定的按钮关闭键盘-(BOOL)textFieldShouldReturn:(UITextField *)textField{ [textField resignFirstResponder]; return YES;}-(BOOL)textView:(UITextView *)text.....
分类:其他好文   时间:2015-01-22 21:40:55    阅读次数:149
UITextField限制输入的只能是数字
//限制输入的是数字 - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {     return [self validateNumber:string];      } - (BOOL)v...
分类:其他好文   时间:2015-01-22 15:28:46    阅读次数:80
iOS开发系列之二 – UILabel 用法小结
/ 初始化输入框并设置位置和大小UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(10, 100, 300, 30)];// 设置输入框提示textField.placeholder = @"TextFiel...
分类:移动开发   时间:2015-01-22 12:35:38    阅读次数:181
UISearchBar 改变编辑去背景颜色
1. 使用此代码改变搜索栏“UITextField将backgroundImage UITextField *searchField; NSUInteger numViews = [searchBar.subviews count]; for(int i = 0; i < numViews; i++) { if([[searchBar.subviews objectAtIndex:i] isK...
分类:其他好文   时间:2015-01-21 11:43:10    阅读次数:181
UITextField,UITextView,UILabel 根据内容来计算高度
在开发的过程中,常常遇到根据内容来决定控件的高度的情况,常见的就是UITextField,UITextView,UILabel这三个控件,下面一UITextView 为例来说明一下: 首先新新建一个textView. 设施text,font  UITextView *textView = [[UITextView alloc] init];     textView.text = ...
分类:其他好文   时间:2015-01-19 19:11:33    阅读次数:168
iOS UITextField完成输入后关闭键盘的方法总结
// //  ViewController.swift //  UITextField完成输入后关闭键盘的方法 // //  Created by 悦兑科技 on 15/1/19. //  Copyright (c) 2015年 BSY. All rights reserved. // import UIKit class Vie...
分类:移动开发   时间:2015-01-19 14:27:29    阅读次数:268
UILable和UITextField的详细讲解
一、UILabel(1)初始化UILabelC代码UILabel*scoreLabel=[[UILabelalloc]initWithFrame:CGRectMake((self.bounds.size.width/2),0.0,150.0,43.0)];scoreLabel.textAlignme...
分类:其他好文   时间:2015-01-09 18:50:58    阅读次数:299
(转)设置 UILabel 和 UITextField 的 Padding 或 Insets (理解UIEdgeInsets)
转自http://unmi.cc/uilable-uitextfield-padding-insets主要是理解下UIEdgeInsets在IOS UI里的意义.靠,这货其实就是间隔,起个名字这么让人费解!!!正值表示间隔值,负值表示超出参照物的距离。------------------------...
分类:其他好文   时间:2015-01-08 17:34:26    阅读次数:287
915条   上一页 1 ... 69 70 71 72 73 ... 92 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!