91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS上下文實現評價星星示例代碼

發布時間:2020-08-19 14:35:40 來源:腳本之家 閱讀:123 作者:李長友同學 欄目:移動開發

常規思路:

創建兩個 view,通過 for 循環創建 imageView,未點亮星星視圖在下、點亮星星視圖在上重合在一起,當用戶點擊視圖時,通過改變點亮星星視圖的 width 實現功能

本文思路:

直接重寫 drawrect 方法,在 drawrect 用 drawimage 畫出星星,根據 currentValue 畫出不同類型的星星,當用戶點擊視圖時,改變 currentValue,并根據改變后的 currentValue 重新畫出星星。

展示圖:

iOS上下文實現評價星星示例代碼

代碼:

自定義一個繼承 UIView 的 CYStarView

屬性:

/** 完成后執行的block */
@property (copy, nonatomic) void(^completionBlock)(NSInteger);
/** 是否可以點擊 */
@property (assign, nonatomic) BOOL clickable;
/** 星星個數 */
@property (assign, nonatomic) NSInteger numberOfStars;
/** 星星邊長 */
@property (assign, nonatomic) CGFloat lengthOfSide;
/** 評價值 */
@property (assign, nonatomic) NSInteger currentValue;
/** 星星間隔 */
@property (assign, nonatomic) CGFloat spacing;

重寫 setter 方法,在 setter 方法中調用 setNeedsDisplay,會執行 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 ++) {
    // 根據 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"
// 初始化,傳入必要參數
CYStarView *starView = [[CYStarView alloc] initWithFrame:frame numberOfStars:number lengthOfSide:length];
// 設置 clickable,評論界面設置為YES,展示界面設置為NO
self.starView.clickable = YES;
// 
// 設置 completionBlock
self.starView.completionBlock = ^(NSInteger currentValue) {
  // 點擊后的操作放這里
};

項目地址:點我點我!

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永康市| 辽宁省| 双城市| 黑龙江省| 兖州市| 盘锦市| 东光县| 偃师市| 浦县| 林州市| 商城县| 龙岩市| 明光市| 沙田区| 乡城县| 上栗县| 章丘市| 嘉荫县| 泽库县| 乳山市| 玉树县| 南充市| 屏边| 三亚市| 通辽市| 贞丰县| 老河口市| 探索| 芜湖市| 堆龙德庆县| 库伦旗| 文成县| 通化市| 上虞市| 外汇| 乳源| 沁源县| 普洱| 精河县| 渝北区| 鄱阳县|