程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-iOS中怎麼將#35b665(16進制)的顏色值賦給image,請大神幫忙

ios-iOS中怎麼將#35b665(16進制)的顏色值賦給image,請大神幫忙

編輯:編程綜合問答
iOS中怎麼將#35b665(16進制)的顏色值賦給image,請大神幫忙

從網絡端獲得的image是透明的,同時得到了一個#35b665(16進制)的值,怎麼給image賦上這個值

最佳回答:


  • (UIColor*) colorWithHex:(NSString *)hexValue alpha:(CGFloat)alphaValue { unsigned int red,green,blue; NSRange range; range.length = 2; range.location = 0; [[NSScanner scannerWithString:[hexValue substringWithRange:range]] scanHexInt:&red]; range.location = 2; [[NSScanner scannerWithString:[hexValue substringWithRange:range]] scanHexInt:&green]; range.location = 4; [[NSScanner scannerWithString:[hexValue substringWithRange:range]] scanHexInt:&blue]; return [UIColor colorWithRed:(float)(red/255.0f) green:(float)(green / 255.0f) blue:(float)(blue / 255.0f) alpha:alphaValue]; }
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved