你好,歡迎來到IOS教程網

 Ios教程網 >> IOS訊息 >> 關於IOS >> iphone/ipad實現自定義的開關UISwitch(continuous,clipsToBounds,userInteractionEnabled屬性)

iphone/ipad實現自定義的開關UISwitch(continuous,clipsToBounds,userInteractionEnabled屬性)

編輯:關於IOS

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

@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。

 

 

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved