{// 播放器 AVPlayer *player;// 承载视图 UIView *contentView;// 控件承载视图 UIView *controlView;// 进度条 UISlider *progressSlider;}@end@implementation ViewCon...
分类:
其他好文 时间:
2015-08-29 16:39:46
阅读次数:
187
搞了半天,文档也没看出个所以然,也没什么选中的方法直接用,貌似只有个selectedSegmentIndex可以用,自己觉得还不如拖两个按钮比较快,可是不信邪(也多次把自己搞的半死)的性格让我又继续查。http://blog.csdn.net/yongyinmg/article/details/20...
分类:
其他好文 时间:
2015-08-28 00:21:22
阅读次数:
254
#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController- (void)viewDidLoad { [super viewDidLoad]; /...
分类:
移动开发 时间:
2015-08-27 22:55:01
阅读次数:
228
Appdelegate中- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindo...
分类:
移动开发 时间:
2015-08-27 22:34:03
阅读次数:
280
步进UIStepper、滑动块UISlider:当它们作为事件,被触发时,它们的值会发生改变。正因为如此,触发该事件时,可以一张一张翻阅浏览图片,,,,步进UIStepper:@property(nonatomic) double minimumValue; // default 0...
分类:
其他好文 时间:
2015-08-27 20:41:56
阅读次数:
191
这个比较简单,直接看下面的一些具体使用 UISlider *slider = [[UISlider alloc] initWithFrame:CGRectMake(20, 20, 200, 20)];// slider.backgroundColor = [UIColor grayColor];.....
分类:
其他好文 时间:
2015-08-27 00:23:01
阅读次数:
143
一、每个segment都能被点击,相当于集成了若干个button。二、常用API1,initWithItems: //UISegmentedControl独有的初始化?法,?来创建多个分段 2,setTitle: forSegmentAtIndex: //为指定下标的分段设置title 3,sele...
分类:
其他好文 时间:
2015-08-27 00:21:39
阅读次数:
170
题目:创建3个UISlider对象。?用这3个UISlider对象控制self.view.backgroundColor的变化。 3个UISlider对象分别控制UIColor的red,green,blue。 滑动任何?一个UISlider都会引起背景颜?色变化。#import "AppDelega...
分类:
其他好文 时间:
2015-08-27 00:19:46
阅读次数:
191
#import "AppDelegate.h"#import "RootViewController.h"@interface AppDelegate ()@end@implementation AppDelegate- (void)dealloc{ [_window release]; [su.....
分类:
其他好文 时间:
2015-08-26 13:56:16
阅读次数:
137
NSArray *segmentedArray = [NSArray arrayWithObjects:@"患者基本信息",@"患者信息",nil]; UISegmentedControl *segmentedControl = [[UISegmentedControl alloc]initWit....
分类:
其他好文 时间:
2015-08-19 22:34:06
阅读次数:
102