十余年的廣陵網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。成都營銷網(wǎng)站建設(shè)的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整廣陵建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。成都創(chuàng)新互聯(lián)公司從事“廣陵網(wǎng)站設(shè)計(jì)”,“廣陵網(wǎng)站推廣”以來,每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
UISwitch(開關(guān),默認(rèn)為關(guān))
IOS開發(fā)中必不可少的基本控件,主要用于只有兩種的選擇,比如飛行模式等等,本文主要是列出常用的屬性及方法(注XCode版本為7.2)
//默認(rèn)狀態(tài)
//屬性
@property(nullable,nonatomic,strong)UIColor *onTintColor;//開著的時(shí)候控件的顏色
代碼:one.onTintColor=[UIColorbrownColor];
如圖:
@property(null_resettable,nonatomic,strong)UIColor *tintColor;//感覺像是邊框的顏色,并且?guī)в袆?dòng)畫,
代碼:one.tintColor=[UIColorredColor];
如圖:第二張像個(gè)動(dòng)畫
@property(nullable,nonatomic,strong)UIColor *thumbTintColor;// 按鈕的顏色
代碼:
one.thumbTintColor=[UIColorblueColor];
如圖:
@property(nonatomic,getter=isOn)BOOL on;//是否處于開啟狀態(tài),默認(rèn)為NO
//方法
- (instancetype)initWithFrame:(CGRect)frame; // 設(shè)置控件的大小和起始位置
- (nullableinstancetype)initWithCoder:(NSCoder *)aDecoder;//從XIB加載
- (void)setOn:(BOOL)on animated:(BOOL)animated;// 開的時(shí)候是否有動(dòng)畫