码迷,mamicode.com
首页 >  
搜索关键字:self    ( 14215个结果
uibutton 使用settitle后如何修改其中文字对齐方式
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; btn.frame = CGRectMake(5, self.alertView.lableView.frame.size.height + self.checkBox.fra...
分类:其他好文   时间:2014-08-08 11:55:15    阅读次数:246
php分页类
<?php //分页类 classpage{ private$total_rows;//总条数 private$onepage_rows;//一页显示数量 private$total_page;//总页数 private$page_rows;//页码数量 private$start_id;//描述起始ID private$end_id;//描述结束ID private$desc=‘‘;//描述上一页,下一页 private$self..
分类:Web程序   时间:2014-08-08 02:11:55    阅读次数:227
004-实现点击任意屏幕上非文本框点移除键盘
实现点击任意屏幕上非文本框点移除键盘 我们在开发的过程中若要实现此功能只要将下面这些代码拷贝到你要实现的项目里面就可以实现此功能.代码如下:- (void)viewDidLoad{ [super viewDidLoad]; [self setUpForDismissKeyboa...
分类:其他好文   时间:2014-08-08 01:47:15    阅读次数:194
TableView 详解
1.建立tableView DataTable = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 420)]; [DataTable setDelegate:self]; [DataTable setDataSource:self]...
分类:其他好文   时间:2014-08-08 01:30:05    阅读次数:256
关闭键盘
UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapOnce)];//定义一个手势[tap setNumberOfTouchesRequired:...
分类:其他好文   时间:2014-08-07 22:46:35    阅读次数:212
textView 圆角
#import [self.content.layer setBackgroundColor:[[UIColor whiteColor] CGColor]]; [self.content.layer setBorderColor:[[UIColor grayColor] CGColor]]; ...
分类:其他好文   时间:2014-08-07 22:41:05    阅读次数:209
UIImageView做动画
UIImageView *_dogImageView = [[UIImageView alloc] init];_dogImageView.frame = CGRectMake(0, 100, 300, 200); [self.view addSubview:_dogImageView];NSMut...
分类:其他好文   时间:2014-08-07 18:41:12    阅读次数:209
iOS按钮长按
UILongPressGestureRecognizer*longPressGR = [[UILongPressGestureRecognizeralloc]initWithTarget:self action:@selecto...
分类:移动开发   时间:2014-08-07 18:40:20    阅读次数:192
ios 页面滑入滑出
从左边滑进CGRect r1,r2; r1 = app.testview.view.frame; r2 = self.view.frame; [app.testview.view setFrame:CGRectMake(320, r1.origin.y,r1.size....
分类:移动开发   时间:2014-08-07 18:25:20    阅读次数:228
UIDatePicker控件
用处:选择日期或时间 当选择新的日期或时间的时候,值改变事件会被触发-(void)viewDidLoad{ CGRect frame = CGRectMake(20,20,320,100); self.datePicker = [[UIDatePicker alloc]initWithFrame.....
分类:其他好文   时间:2014-08-07 18:22:20    阅读次数:184
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!