摘要:
/***********UIButton***************///新建button UIButtonTypeCustom为隐藏按键 UIButtonTypeRoundedRect 为显示 UIButton * testbutton = [UIButton buttonWithType:UIButtonTypeCustom];//设置button的文字显示 [testbutton setTitle:@"显示" forState:UIControlStateNormal];//为按键添加事件 [testbutton addTarget:self action:@sel 阅读全文
摘要:
UISlider *_uislider; //新建一个滑动条 UILabel *_uilabel; //新建一个label用来显示滑动的位置//滑动条-(void)testSlider{ NSLog(@"begin slider"); //设置滑动条slider的一些基本属性 _uislider = [[UISlider alloc]init]; _uislider.frame = CGRectMake(10, 365, 300, 50); //滑动条的位置,大小 _uislider.minimumValue = 0; //最小值 _uisli... 阅读全文