1
我目前正在嘗試使用RAYWENDERLICH的Core Graphics 101: Glossy Buttons,但我在使用它時出現了一個問題,我不知道以編程方式應用此代碼,並以編程方式調整其圖像。有光澤的按鈕以編程方式設置顏色
這裏是我的按鈕:
@interface CoolButtonViewController : UIViewController {
CoolButton *_button;
}
@property (retain) IBOutlet CoolButton *button;
@implementation CoolButtonViewController
@synthesize button = _button;
如何以編程方式編輯圖像的顏色,而不是由滑塊。
有沒有任何顏色列表,我想嘗試各種顏色。 – Bazinga
@user此方法將允許您使用字面上的任何顏色。在Photoshop中使用顏色選擇器,或者使用您使用的程序並將值應用到上面。但是,將顏色調整爲預定值與按鈕背景顏色屬性中的[UIColor blueColor]一樣簡單。 –
謝謝你:) – Bazinga