1
我需要一個特定的十六進制代碼作爲背景顏色,而不是從預先製作的選項列表中下拉。我該如何做到這一點?設置.xib啓動圖像背景的背景顏色
我需要一個特定的十六進制代碼作爲背景顏色,而不是從預先製作的選項列表中下拉。我該如何做到這一點?設置.xib啓動圖像背景的背景顏色
對於啓動.xib,您將無法以編程方式更改顏色。您可以在側面菜單中輸入十六進制值。點擊背景顏色,從左側選擇第二個對象,然後可以輸入十六進制值和RGB值。
用戶顏色十六進制website將您的顏色轉換爲RGB值,如果您想要在整個應用程序中使用顏色(當您可以通過編程方式進行操作)。
如果您有特定且一致的顏色需求,我建議您創建自定義類別來存儲自定義顏色。一個示例答案是here。
的UIColor + CustomColorCatagory.h
#import <UIKit/UIKit.h>
@interface UIColor (CustomColorCatagory) //This line is one of the most important ones - it tells the complier your extending the normal set of methods on UIColor
+ (UIColor *)customColor;
@end
的UIColor + CustomColorCatagory.m
#import "UIColor+CustomColorCatagory.h"
@implementation UIColor (CustomColorCatagory)
+ (UIColor *)customColor {
return [UIColor colorWithRed:0.643 green:0.643 blue:0.643 alpha:1];
}
@end
希望這有助於!
爲什麼我收到這麼多問題的代表?我從字面上只是有一個大腦放屁,找不到工具欄... – louiskablooie