常規(guī)思路:
創(chuàng)新互聯(lián)建站是一家專業(yè)提供鄒平企業(yè)網(wǎng)站建設,專注與成都做網(wǎng)站、成都網(wǎng)站建設、H5場景定制、小程序制作等業(yè)務。10年已為鄒平眾多企業(yè)、政府機構等服務。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設計公司優(yōu)惠進行中。
創(chuàng)建兩個 view,通過 for 循環(huán)創(chuàng)建 imageView,未點亮星星視圖在下、點亮星星視圖在上重合在一起,當用戶點擊視圖時,通過改變點亮星星視圖的 width 實現(xiàn)功能
本文思路:
直接重寫 drawrect 方法,在 drawrect 用 drawimage 畫出星星,根據(jù) currentValue 畫出不同類型的星星,當用戶點擊視圖時,改變 currentValue,并根據(jù)改變后的 currentValue 重新畫出星星。
展示圖:
代碼:
自定義一個繼承 UIView 的 CYStarView
屬性:
/** 完成后執(zhí)行的block */ @property (copy, nonatomic) void(^completionBlock)(NSInteger); /** 是否可以點擊 */ @property (assign, nonatomic) BOOL clickable; /** 星星個數(shù) */ @property (assign, nonatomic) NSInteger numberOfStars; /** 星星邊長 */ @property (assign, nonatomic) CGFloat lengthOfSide; /** 評價值 */ @property (assign, nonatomic) NSInteger currentValue; /** 星星間隔 */ @property (assign, nonatomic) CGFloat spacing;
重寫 setter 方法,在 setter 方法中調用 setNeedsDisplay,會執(zhí)行 drawrect:
- (void)setLengthOfSide:(CGFloat)lengthOfSide { // 超過控件高度 if (lengthOfSide > self.frame.size.height) { lengthOfSide = self.frame.size.height; } // 超過控件寬度 if (lengthOfSide > self.frame.size.width / _numberOfStars) { lengthOfSide = self.frame.size.width / _numberOfStars; } _lengthOfSide = lengthOfSide; _spacing = (self.frame.size.width - lengthOfSide * _numberOfStars) / _numberOfStars; [self setNeedsDisplay]; }
在 drawrect 中畫星星:
- (void)drawRect:(CGRect)rect { UIImage *lightImage = [UIImage imageNamed:@"star_light"]; UIImage *darkImage = [UIImage imageNamed:@"star_dark"]; // 獲取當前上下文 CGContextRef context = UIGraphicsGetCurrentContext(); for (int i = 0; i < self.numberOfStars; i ++) { // 根據(jù) currentValue 選擇是畫亮的還是暗的星星 UIImage *image = i >= self.currentValue ? darkImage : lightImage; CGRect imageRect = CGRectMake(self.spacing / 2 + (self.lengthOfSide + self.spacing) * i, (self.frame.size.height - self.lengthOfSide) / 2, self.lengthOfSide, self.lengthOfSide); CGContextSaveGState(context); // 坐標系Y軸是相反的,進行翻轉 CGContextScaleCTM(context, 1.0, - 1.0); CGContextTranslateCTM(context, 0, - rect.origin.y * 2 - rect.size.height); CGContextDrawImage(context, imageRect, image.CGImage); CGContextRestoreGState(context); } }
使用:
在要使用的控制器中:
#import "CYStarView.h" // 初始化,傳入必要參數(shù) CYStarView *starView = [[CYStarView alloc] initWithFrame:frame numberOfStars:number lengthOfSide:length]; // 設置 clickable,評論界面設置為YES,展示界面設置為NO self.starView.clickable = YES; // // 設置 completionBlock self.starView.completionBlock = ^(NSInteger currentValue) { // 點擊后的操作放這里 };
項目地址:點我點我!
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
標題名稱:iOS上下文實現(xiàn)評價星星示例代碼
網(wǎng)站地址:http://www.chinadenli.net/article2/pgisic.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供微信公眾號、外貿(mào)建站、網(wǎng)站設計、微信小程序、建站公司、網(wǎng)頁設計公司
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)