UISwitch *myswitch=[[UISwitch alloc]initWithFrame:CGRectMake(100, 40, 0, 0)]; //打开时颜色 myswitch.onTintColor=[UIColor redColor]; //关闭时颜色 myswitch.tintC....
分类:
其他好文 时间:
2015-09-13 14:37:58
阅读次数:
133
步进UIStepper、滑动块UISlider:当它们作为事件,被触发时,它们的值会发生改变。正因为如此,触发该事件时,可以一张一张翻阅浏览图片,,,,步进UIStepper:@property(nonatomic) double minimumValue; // default 0...
分类:
其他好文 时间:
2015-08-27 20:41:56
阅读次数:
191
开关的可配置选项很少,一般用于处理布尔值。 下面给出一个小Demo,创建两个开关,开关一可以控制开关二的可用与否,两者的关系就相当于水闸与水龙头的关系。#import "ViewController.h"@interface ViewController ()@property(nonatom...
分类:
其他好文 时间:
2015-08-13 15:44:07
阅读次数:
130
建立根视图控制器:
建立一个类:MyButton:
效果图:注意 : 引入头文件1.在MyButton.h文件中声明一份协议原代码:@protocol MyButtonDelegate
-(void)changeColor;
@end2.在MyButton.h文件中设置代理人的属性原代码:@property(nonatomic,assign)id<MyButtonDeleg...
分类:
其他好文 时间:
2015-08-04 23:05:05
阅读次数:
132
UISwitch属性1. onTintColor 处于on时switch的颜色?switchImage.onTintColor=[UIColorgrayColor];2.tintColor 处于off时switch的颜色switchImage.tintColor=[UIColorgreenColo....
分类:
移动开发 时间:
2015-08-01 18:41:45
阅读次数:
226
//// ViewController.m// UI2_UISwitch与UIActivity//// Created by zhangxueming on 15/7/7.// Copyright (c) 2015年 zhangxueming. All rights reserved.//#...
分类:
其他好文 时间:
2015-07-11 16:19:15
阅读次数:
107
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UISwitch *customSw;@property (weak, nonatomic) IBOutlet UIV...
分类:
其他好文 时间:
2015-07-10 02:10:04
阅读次数:
93
UISwitch属性1. onTintColor 处于on时switch的颜色switchImage.onTintColor=[UIColorgrayColor];2.tintColor处于off时switch的颜色switchImage.tintColor=[UIColorgreenColor];...
分类:
其他好文 时间:
2015-07-08 16:17:47
阅读次数:
179
#pragma mark - 创建控件 UISwitch- (void)createSwitch
{
UISwitch *aSwitch = [[UISwitch alloc] initWithFrame:CGRectMake(50, 150, 0, 0)]; [self addSubview:aSwitch];
[aSwitch release]; // 添加绑定事件...
分类:
其他好文 时间:
2015-07-06 19:51:42
阅读次数:
126
前言在上一篇文章中, 我们介绍了Xamarin 以及简单的HelloWorld范例, 这次我们针对iOS的专案目录架构以及基本控制项进行说明. 包含UIButton,UISlider,UISwitch, UIImage以及UIWebView控制项。iOS的使用者界面描述文档, 其副文档名为.xib,...
分类:
移动开发 时间:
2015-06-27 21:19:08
阅读次数:
208