簡單代碼實現(xiàn)九宮格

利用 UITableView 實現(xiàn)九宮格布局。具體特點如下:?

1庄新、通過KVC的方法方便實現(xiàn)了九宮格公黑,簡便了實現(xiàn)的代碼;?

2摄咆、九宮格顯示圖片的代碼凡蚜,縮小截取固定大小的小圖片節(jié)省內(nèi)存;?

3吭从、充分利用了分類來實現(xiàn)九宮格朝蜘;?

4. 每個格子都支持點擊動作。


#import "ViewController.h"

#import "UITableGridViewCell.h"

#import "UIImageButton.h"

#define kImageWidth? 100 //UITableViewCell里面圖片的寬度

#define kImageHeight? 100 //UITableViewCell里面圖片的高度

@interface ViewController ()

@property(nonatomic,strong)UITableView *tableView;

@property(nonatomic,strong)UIImage *image;

@end

@implementation ViewController

- (void)viewDidLoad

{

? ? [super viewDidLoad];

? ? self.title=@"九宮格";

? ? self.view.backgroundColor = [UIColor whiteColor];


? ? self.image= [selfcutCenterImage:[UIImageimageNamed:@"macbook_pro.jpg"]? size:CGSizeMake(100,100)];


? ? CGSizemSize = [[UIScreenmainScreen]bounds].size;

? ? CGFloatscreenWidth = mSize.width;

? ? CGFloatscreenHeight = mSize.height;

? ? self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, screenWidth, screenHeight) style:UITableViewStylePlain];

? ? [self.view addSubview:_tableView];

? ? self.tableView.dataSource = self;

? ? self.tableView.separatorColor = [UIColor clearColor];

? ? self.tableView.delegate=self;

? ? self.tableView.backgroundColor = [UIColor clearColor];

}

#pragma mark UITable datasource and delegate

-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView{

? ? return 1;

}

-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{

? ? return 12;

}

-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{

? ? staticNSString*identifier =@"Cell";

? ? //自定義UITableGridViewCell涩金,里面加了個NSArray用于放置里面的3個圖片按鈕

? ? UITableGridViewCell*cell = [tableViewdequeueReusableCellWithIdentifier:identifier];

? ? if(cell ==nil) {

? ? ? ? cell = [[UITableGridViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];

? ? ? ? cell.selectedBackgroundView = [[UIView alloc] init];

? ? ? ? NSMutableArray *array = [NSMutableArray array];

? ? ? ? for(inti=0; i<3; i++) {

? ? ? ? ? ? //自定義繼續(xù)UIButton的UIImageButton 里面只是加了2個row和column屬性

? ? ? ? ? ? UIImageButton *button = [UIImageButton buttonWithType:UIButtonTypeCustom];

? ? ? ? ? ? button.bounds=CGRectMake(0,0,kImageWidth,kImageHeight);

? ? ? ? ? ? button.center=CGPointMake((1+ i) *5+kImageWidth*(0.5+ i) ,5+kImageHeight*0.5);

? ? ? ? ? ? //button.column = i;

? ? ? ? ? ? [buttonsetValue:[NSNumbernumberWithInt:i]forKey:@"column"];

? ? ? ? ? ? [buttonaddTarget:self action:@selector(imageItemClick:) forControlEvents:UIControlEventTouchUpInside];

? ? ? ? ? ? [buttonsetBackgroundImage:self.image forState:UIControlStateNormal];

? ? ? ? ? ? [celladdSubview:button];

? ? ? ? ? ? [arrayaddObject:button];

? ? ? ? }

? ? ? ? [cellsetValue:arrayforKey:@"buttons"];

? ? }


? ? //獲取到里面的cell里面的3個圖片按鈕引用

? ? NSArray*imageButtons =cell.buttons;

? ? //設(shè)置UIImageButton里面的row屬性

? ? [imageButtonssetValue:[NSNumbernumberWithInt:indexPath.row]forKey:@"row"];

? ? returncell;

}

-(CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath{

? ? return kImageHeight + 5;

}

-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath{

? ? //不讓tableviewcell有選中效果

? ? [tableViewdeselectRowAtIndexPath:indexPath animated:YES];

}

-(void)imageItemClick:(UIImageButton*)button{

? ? NSString*msg = [NSStringstringWithFormat:@"第%i行 第%i列",button.row +1, button.column +1];

? ? UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示"

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? message:msg

?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? delegate:nil

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? cancelButtonTitle:@"好的谱醇,知道了"

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? otherButtonTitles:nil,nil];

? ? [alertshow];

}

#pragma mark 根據(jù)size截取圖片中間矩形區(qū)域的圖片 這里的size是正方形

-(UIImage*)cutCenterImage:(UIImage*)image size:(CGSize)size{

? ? CGSizeimageSize = image.size;

? ? CGRectrect;

? ? //根據(jù)圖片的大小計算出圖片中間矩形區(qū)域的位置與大小

? ? if(imageSize.width> imageSize.height) {

? ? ? ? floatleftMargin = (imageSize.width- imageSize.height) *0.5;

? ? ? ? rect =CGRectMake(leftMargin,0, imageSize.height, imageSize.height);

? ? }else{

? ? ? ? floattopMargin = (imageSize.height- imageSize.width) *0.5;

? ? ? ? rect =CGRectMake(0, topMargin, imageSize.width, imageSize.width);

? ? }


? ? CGImageRefimageRef = image.CGImage;

? ? //截取中間區(qū)域矩形圖片

? ? CGImageRefimageRefRect =CGImageCreateWithImageInRect(imageRef, rect);


? ? UIImage*tmp = [[UIImagealloc]initWithCGImage:imageRefRect];

? ? CGImageRelease(imageRefRect);


? ? UIGraphicsBeginImageContext(size);

? ? CGRectrectDraw =CGRectMake(0,0, size.width, size.height);

? ? [tmpdrawInRect:rectDraw];

? ? // 從當(dāng)前context中創(chuàng)建一個改變大小后的圖片

? ? tmp =UIGraphicsGetImageFromCurrentImageContext();


? ? // 使當(dāng)前的context出堆棧

? ? UIGraphicsEndImageContext();


? ? returntmp;

}

@end

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市步做,隨后出現(xiàn)的幾起案子副渴,更是在濱河造成了極大的恐慌,老刑警劉巖全度,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件煮剧,死亡現(xiàn)場離奇詭異,居然都是意外死亡将鸵,警方通過查閱死者的電腦和手機勉盅,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來顶掉,“玉大人草娜,你說我怎么就攤上這事⊙魍玻” “怎么了宰闰?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長簿透。 經(jīng)常有香客問我移袍,道長,這世上最難降的妖魔是什么萎战? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任咐容,我火速辦了婚禮,結(jié)果婚禮上蚂维,老公的妹妹穿的比我還像新娘戳粒。我一直安慰自己路狮,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布蔚约。 她就那樣靜靜地躺著奄妨,像睡著了一般。 火紅的嫁衣襯著肌膚如雪苹祟。 梳的紋絲不亂的頭發(fā)上砸抛,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天,我揣著相機與錄音树枫,去河邊找鬼直焙。 笑死,一個胖子當(dāng)著我的面吹牛砂轻,可吹牛的內(nèi)容都是我干的奔誓。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼搔涝,長吁一口氣:“原來是場噩夢啊……” “哼厨喂!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起庄呈,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤蜕煌,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后诬留,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體斜纪,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年故响,在試婚紗的時候發(fā)現(xiàn)自己被綠了傀广。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡彩届,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出誓酒,到底是詐尸還是另有隱情樟蠕,我是刑警寧澤,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布靠柑,位于F島的核電站寨辩,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏歼冰。R本人自食惡果不足惜靡狞,卻給世界環(huán)境...
    茶點故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望隔嫡。 院中可真熱鬧甸怕,春花似錦甘穿、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至武契,卻和暖如春募判,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背咒唆。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工届垫, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人全释。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓敦腔,卻偏偏與公主長得像,于是被迫代替她去往敵國和親恨溜。 傳聞我的和親對象是個殘疾皇子符衔,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,697評論 2 351

推薦閱讀更多精彩內(nèi)容