DZNSegmentedControlA drop-in replacement for UISegmentedControl for showing counts, to be used typically on a user profile.一个UISegmentedControl的子类,用以扩...
分类:
其他好文 时间:
2015-05-27 22:46:49
阅读次数:
262
//// ViewController.m// UISlider//// Created by City--Online on 15/5/19.// Copyright (c) 2015年 XQB. All rights reserved.//#import "ViewController....
分类:
其他好文 时间:
2015-05-19 18:06:13
阅读次数:
145
在上一篇文章中,创建了UISegmentedControl控件并了解它的简单用法,这篇文章主要学习DatePicker的使用,将通过Swift语言创建一个简单的例子。UIDatePicker对象:是一个特定的日期时间选择器,通过旋转轮来选择日期和时间,也可以使用日期选择器作为一个倒数计数器。继承.....
分类:
其他好文 时间:
2015-05-16 16:23:14
阅读次数:
133
UISegmentedControl控件是分段显示控件,用户可以选择它上展示的任一段部分,每一个部分都像是一个按钮,如果被按下也会像UIButton一样执行相应的方法。在这篇文章中我们将创建一个UISegmentedControl控件并让它显示三个部分,每一个部分都会显示不同的文本内容。需要的条件:...
分类:
编程语言 时间:
2015-05-15 21:16:07
阅读次数:
227
NGUI中UISlider的OnValueChange事件的动态添加...
分类:
其他好文 时间:
2015-05-14 18:41:12
阅读次数:
239
原文 Visual Studio跨平台开发实战(2) - Xamarin.iOS基本控制项介绍前言在上一篇文章中, 我们介绍了Xamarin 以及简单的HelloWorld范例, 这次我们针对iOS的专案目录架构以及基本控制项进行说明. 包含UIButton,, UISlider, UISwitch...
分类:
移动开发 时间:
2015-05-12 15:14:00
阅读次数:
272
#import "AppDelegate.h"#import "ViewController.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)applicat...
分类:
其他好文 时间:
2015-05-12 10:53:00
阅读次数:
112
1.UISegmentedControl ????UISegmentedControl是通过selectedSegmentIndex选择的 -?(IBAction)segmentedTouch:(id)sender?{
????UISegmentedControl?*sm?=?(UISegmentedControl?*)sender;
????...
分类:
其他好文 时间:
2015-05-11 18:21:58
阅读次数:
135
代码创建图片播放
#import "ViewController.h"
#define kLength 15
@interface ViewController ()
@property(nonatomic, weak)UIImageView *myImage;
@property(nonatomic, weak)UILabel *myLabel;
@property(nonat...
分类:
其他好文 时间:
2015-05-09 10:21:36
阅读次数:
131
UIViewController.m 1 #import "ViewController.h" 2 #import "CustomerSlider.h" 3 @interface ViewController () 4 5 @end 6 7 @implementation ViewControl.....
分类:
其他好文 时间:
2015-05-07 23:45:17
阅读次数:
245