IOS開源項目(1)之RatingView星級評論控制項學習

來源:互聯網
上載者:User
1 前言

這段時間學習的都是IOS基礎的東西,理論需要聯絡實際,最忌打算找幾個開源的項目代碼研究一下,苦於技術水平限制,剛開始只能研究寫簡單的控制項了,今天我們來學習一下一個簡單的控制項應用,星級評等控制項。

2 詳述

這是一個很簡單的控制項,用到的只是也不是很多,所以作為入門層級的學習資料還是不錯的。

目錄結構:


部分代碼概述:

RatingControllerViewController.h

#import <UIKit/UIKit.h>#import "ZYRatingView.h"@interface ZYViewController : UIViewController<RatingViewDelegate>{ZYRatingView *starView;UILabel *ratingLabel;}@property (nonatomic, retain) IBOutlet ZYRatingView *starView;@property (nonatomic, retain) IBOutlet UILabel *ratingLabel;-(IBAction)clearRating:(id)sender;-(void)ratingChanged:(float)newRating;@end

RatingControllerViewController.m

- (void)viewDidLoad {    [super viewDidLoad];NSLog(@"Initializing rating view");    //初始化評分視圖,代理為ViewController自己[starView setImagesDeselected:@"0.png" partlySelected:@"1.png" fullSelected:@"2.png" andDelegate:self];    //設定評分[starView displayRating:1.5];}//評分清零-(IBAction)clearRating:(id)sender {[starView displayRating:0.0];}//實現代理方法-(void)ratingChanged:(float)newRating {    //顯示評分ratingLabel.text = [NSString stringWithFormat:@"Rating is: %1.1f", newRating];}

如果想查看完整代碼,請點擊文章結尾出串連進行下載,其中附帶自己整理的全面的中文注釋,方便大家學習。

運行結果:


點擊評等控制項後


點擊Clear後



3 結語

以上是所有內容,希望對大家有所協助。

Demo:http://download.csdn.net/detail/u010013695/5428683

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.