1 #import "AppDelegate.h" 2 3 @interface AppDelegate () 4 { 5 UISlider* lider; 6 } 7 8 @end 9 10 @implementation AppDelegate 11 ...
分类:
其他好文 时间:
2015-05-06 21:07:19
阅读次数:
235
self.window = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds]; self.window.backgroundColor = [UIColor whiteColor]; [self.window makeKey.....
分类:
其他好文 时间:
2015-05-06 16:51:56
阅读次数:
171
//【UISlider】一个滑块控件,高度固定(31)-事件驱动型控件UISlider *sl = [[UISlider alloc] initWithFrame:CGRectMake(10,74,300,50)]; //设置最大最小值 sl.minimumValue = 0.0; sl.maxim...
分类:
移动开发 时间:
2015-04-07 21:24:28
阅读次数:
232
UIKit提供了一组控件:UISwitch开关、UIButton按钮、UISegmentedControl分段控件、UISlider滑块、UITextField文本字段控件、UIPageControl分页控件。控件是对UIView派生类的实用增强及补充,并可以直接附着于导航栏、表格单元,甚至更大的对...
分类:
移动开发 时间:
2015-03-20 12:43:54
阅读次数:
153
论 Swift 开发入门 : 滑块(UISlider)...
分类:
编程语言 时间:
2015-03-20 11:00:31
阅读次数:
151
UITextField、UITextView、UILabel、UIButton、UISlider、UIStepper、UIImageView、UISwitch、UISegmentedControl、UIToolBar
分类:
其他好文 时间:
2015-03-07 13:40:40
阅读次数:
309
滑块是用一种渐进柔和的方式来展示一种设置或者一个进度。滑块的基类是UISlider,属性比较简单
主要是最小值最大值和当前值。
设定如下:
可以看到下面有两个选项,最小值图像和最大值图像,我们导入两张图片(不好意思没有太合适的图片。。。):
它最主要的事件就是值变更,跟我们之前遇到的控件差不多,现在我们让label显示滑动的当前值,最小是0,最大是10,我们上面设置...
分类:
编程语言 时间:
2015-03-02 09:33:09
阅读次数:
296
_videoSlider = [[UISlider alloc] initWithFrame: CGRectMake(10, 0, 200, 31)]; [_videoSlider addTarget:self action:@selector(videoSlierChange...
分类:
其他好文 时间:
2015-02-28 18:28:42
阅读次数:
115
AsyncOperation mAsync; //需要加载的场景 public UISlider LoadingSlider; //NGUI做的 public UILabel GameTip; // Use this for initialization void OnEnable() { ...
分类:
其他好文 时间:
2015-02-20 01:28:41
阅读次数:
350
//左右轨的图片 UIImage *stetchLeftTrack= [UIImage imageNamed:@"brightness_bar.png"]; UIImage *stetchRightTrack = [UIImage imageNamed:@"brightness_bar....
分类:
移动开发 时间:
2015-02-09 14:02:56
阅读次数:
126