iphone/ipad實現自訂的開關UISwitch(continuous,clipsToBounds,userInt

來源:互聯網
上載者:User

代碼中有設計到幾個我不常用的屬性:

@property(nonatomic,getter=isContinuous) BOOL continuous;        // if set, value change events are generated any time the value changes due to dragging. default = YES

這個是UISlider當中的一個屬性,作用是,當你拖動軌跡按鈕的時候,如果這個屬性是yes,那麼它就會處發sliderValueChanged方法,設為no就拖動的時候不會處發。

如果想處發sliderValueChanged方法,那就用        [self sendActionsForControlEvents:UIControlEventValueChanged];

@property(nonatomic)                 BOOL              clipsToBounds;        
      // When YES, content and subviews are clipped to the bounds of the view. Default is NO.

這個是UIView當中的一個屬性,作用是,view如果超出了父視圖的界線,可以用這個來顯示遮擋的部分,設為yes為遮擋住,預設為no不遮擋。

@property(nonatomic,getter=isUserInteractionEnabled) BOOL userInteractionEnabled; 
// default is YES. if set to NO, user events (touch, keys) are ignored and removed from the event queue.

這個是UIView當中的一個屬性,比如視窗中有一個UIButton按鈕,然後我在上面又添加了一個UIView蓋在uibutton上面,那麼這個UIButton按鈕就得不到響應,為了使這個按鈕得到響應,應該設定這個屬性為no,預設的是yes。

 


 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.