国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

iOS開發(fā)中圖片瀏覽器的實(shí)例講解

2020-02-19 15:52:34
字體:
供稿:網(wǎng)友

現(xiàn)在大部分人都在使用智能手機(jī),不管你是安卓還是iOS系統(tǒng),應(yīng)用程序也有一個(gè)特殊的圖像瀏覽程序,鑒于目前知識(shí)有限,程序員可能不能做這么高的應(yīng)用程序,下面是武林技術(shù)頻道小編為大家?guī)淼膇OS開發(fā)中圖片瀏覽器的實(shí)例講解。

一、程序?qū)崿F(xiàn)要求

1.要求

201611392120159.png (663×410)

2. 界面分析

(1) 需要讀取或修改屬性的控件需要設(shè)置屬性

  • 序號(hào)標(biāo)簽
  • 圖片
  • 圖片描述
  • 左邊按鈕
  • 右邊按鈕

(2) 需要監(jiān)聽響應(yīng)事件的對(duì)象,需要添加監(jiān)聽方法

  • 左邊按鈕
  • 右邊按鈕

二、實(shí)現(xiàn)基本功能的程序

復(fù)制代碼 代碼如下:

//
//? YYViewController.m
//? 03-圖片瀏覽器初步
//
//? Created by apple on 14-5-21.
//? Copyright (c) 2014年 itcase. All rights reserved.
//

?

#import "YYViewController.h"

#define POTOIMGW??? 200
#define POTOIMGH??? 300
#define POTOIMGX??? 60
#define? POTOIMGY??? 50


@interface YYViewController ()

//變量聲明!
@property(nonatomic,strong)UILabel *firstlab;
@property(nonatomic,strong)UILabel *lastlab;
@property(nonatomic,strong)UIImageView *icon;
@property(nonatomic,strong)UIButton *leftbtn;
@property(nonatomic,strong)UIButton *rightbtn;

-(void)change;
@property(nonatomic ,assign)int i;
@end

@implementation YYViewController

- (void)viewDidLoad
{
??? [super viewDidLoad];
??? self.i=0;
??? //創(chuàng)建一個(gè)用來顯示序號(hào)的lable控件
??? UILabel *headlab=[[UILabel alloc]initWithFrame:CGRectMake(20, 10, 300, 30)];
???
? // [headlab setText:@"1/5"];
??? [headlab setTextAlignment:NSTextAlignmentCenter];
??? [headlab setTextColor:[UIColor blackColor]];
???
??? [self.view addSubview:headlab];
??? self.firstlab=headlab;
???
???
???
??? //創(chuàng)建一個(gè)裝載圖片的控件
??? UIImageView *potoimg=[[UIImageView alloc]initWithFrame:CGRectMake(POTOIMGX, POTOIMGY, POTOIMGW, POTOIMGH)];
???
??? UIImage *image=[UIImage imageNamed:@"biaoqingdi"];
??? potoimg.image=image;
???
??? [self.view addSubview:potoimg];
??? self.icon=potoimg;
???
???
???
??? //創(chuàng)建最下邊的描述圖片的lable控件
??? UILabel *desclab=[[UILabel alloc]initWithFrame:CGRectMake(20, 400, 300, 30)];
?? // [desclab setText:@"表情弱爆了!"];
??? [desclab setTextAlignment:NSTextAlignmentCenter];
??? [self.view addSubview:desclab];
??? self.lastlab=desclab;
???
???
??? //創(chuàng)建兩個(gè)方向鍵按鈕
??? //設(shè)置為自定義類型
??? //1.使用類創(chuàng)建對(duì)象
??? UIButton *leftbtn=[UIButton buttonWithType:UIButtonTypeCustom];
???
??? //2.設(shè)置對(duì)象的屬性(不要忘記設(shè)置坐標(biāo))
??? leftbtn.frame=CGRectMake(0, self.view.center.y, 40, 40);
??? [leftbtn setBackgroundImage:[UIImage imageNamed:@"left_normal"] forState:UIControlStateNormal];
??? [leftbtn setBackgroundImage:[UIImage imageNamed:@"left_highlighted"] forState:UIControlStateHighlighted];
???
??? //3.提交對(duì)象到視圖
??? [self.view addSubview:leftbtn];
???
??? self.leftbtn=leftbtn;
??? [leftbtn addTarget:self action:@selector(leftclick:) forControlEvents:UIControlEventTouchUpInside];
???
???
??? UIButton *rightbtn=[UIButton buttonWithType:UIButtonTypeCustom];
???
??? rightbtn.frame=CGRectMake(POTOIMGX+POTOIMGW+10, self.view.center.y, 40, 40);
??? [rightbtn setBackgroundImage:[UIImage imageNamed:@"right_normal"] forState:UIControlStateNormal];
??? [rightbtn setBackgroundImage:[UIImage imageNamed:@"right_highlighted"] forState:UIControlStateHighlighted];
???
??? [self.view addSubview:rightbtn];
???
??? self.rightbtn=rightbtn;
??? [rightbtn addTarget:self action:@selector(rightclick:) forControlEvents:UIControlEventTouchUpInside];
???
??? //這是一個(gè)初始化方法,調(diào)用change可以完成初始化的工作
??? [self change];
}

-(void)change
{
??? [self.firstlab setText:[NSString stringWithFormat:@"%d/5",self.i+1]];
??? switch (self.i) {
??????? case 0:
??????????? self.lastlab.text=@"什么表情都弱爆了!";
??????????? self.icon.image=[UIImage imageNamed:@"biaoqingdi"];
??????????? break;
??????? case 1:
??????????? self.lastlab.text=@"病例";
??????????? self.icon.image=[UIImage imageNamed:@"bingli"];
??????????? break;
??????? case 2:
?????????? self.lastlab.text=@"王八";
??????????? self.icon.image=[UIImage imageNamed:@"wangba"];
??????????? break;
??????? case 3:
?????????? self.lastlab.text=@"吃牛扒";
??????????? self.icon.image=[UIImage imageNamed:@"chiniupa"];
??????????? break;
??????? case 4:
???????????? self.lastlab.text=@"蛋疼!";
??????????? self.icon.image=[UIImage imageNamed:@"danteng"];
??????????? break;
??? }
??? //控制按鈕的點(diǎn)擊,如果為5則右鍵失效,如果為1,則左鍵失效
??? self.leftbtn.enabled=(self.i!=0);
??? self.rightbtn.enabled=(self.i!=4);

}

//向右按鍵
-(void)rightclick:(UIButton *)btn
{
??? self.i++;
??? [self change];
??? //NSLog(@"點(diǎn)我了");
}
-(void)leftclick:(UIButton *)btn
{
??? self.i--;
??? [self change];
}
- (void)didReceiveMemoryWarning
{
??? [super didReceiveMemoryWarning];
??? // Dispose of any resources that can be recreated.
}

@end


三、程序優(yōu)化

?

復(fù)制代碼 代碼如下:

?


//
//? YYViewController.m
//? 03-圖片瀏覽器初步
//
//? Created by apple on 14-5-21.
//? Copyright (c) 2014年 itcase. All rights reserved.
//

?

#import "YYViewController.h"

#define POTOIMGW??? 200
#define POTOIMGH??? 300
#define POTOIMGX??? 60
#define? POTOIMGY??? 50


@interface YYViewController ()

//變量聲明!
@property(nonatomic,strong)UILabel *firstlab;
@property(nonatomic,strong)UILabel *lastlab;
@property(nonatomic,strong)UIImageView *icon;
@property(nonatomic,strong)UIButton *leftbtn;
@property(nonatomic,strong)UIButton *rightbtn;

@property(nonatomic,strong)NSArray *array;

-(void)change;
@property(nonatomic ,assign)int i;
@end

?

復(fù)制代碼 代碼如下:

?


@implementation YYViewController

?

- (void)viewDidLoad
{
??? [super viewDidLoad];
??? self.i=0;
??? //創(chuàng)建一個(gè)用來顯示序號(hào)的lable控件
??? UILabel *headlab=[[UILabel alloc]initWithFrame:CGRectMake(20, 10, 300, 30)];
???
? // [headlab setText:@"1/5"];
??? [headlab setTextAlignment:NSTextAlignmentCenter];
??? [headlab setTextColor:[UIColor blackColor]];
???
??? [self.view addSubview:headlab];
??? self.firstlab=headlab;
???
???
???
??? //創(chuàng)建一個(gè)裝載圖片的控件
??? UIImageView *potoimg=[[UIImageView alloc]initWithFrame:CGRectMake(POTOIMGX, POTOIMGY, POTOIMGW, POTOIMGH)];
???
??? UIImage *image=[UIImage imageNamed:@"biaoqingdi"];
??? potoimg.image=image;
???
??? [self.view addSubview:potoimg];
??? self.icon=potoimg;
???
???
???
??? //創(chuàng)建最下邊的描述圖片的lable控件
??? UILabel *desclab=[[UILabel alloc]initWithFrame:CGRectMake(20, 400, 300, 30)];
?? // [desclab setText:@"表情弱爆了!"];
??? [desclab setTextAlignment:NSTextAlignmentCenter];
??? [self.view addSubview:desclab];
??? self.lastlab=desclab;
???
???
???
??? //創(chuàng)建兩個(gè)方向鍵按鈕
??? //設(shè)置為自定義類型
??? //1.使用類創(chuàng)建對(duì)象
??? UIButton *leftbtn=[UIButton buttonWithType:UIButtonTypeCustom];
???
??? //2.設(shè)置對(duì)象的屬性(不要忘記設(shè)置坐標(biāo))
??? leftbtn.frame=CGRectMake(0, self.view.center.y, 40, 40);
??? [leftbtn setBackgroundImage:[UIImage imageNamed:@"left_normal"] forState:UIControlStateNormal];
??? [leftbtn setBackgroundImage:[UIImage imageNamed:@"left_highlighted"] forState:UIControlStateHighlighted];
???
??? //3.提交對(duì)象到視圖
??? [self.view addSubview:leftbtn];
???
??? self.leftbtn=leftbtn;
??? [leftbtn addTarget:self action:@selector(leftclick:) forControlEvents:UIControlEventTouchUpInside];
???
???
??? UIButton *rightbtn=[UIButton buttonWithType:UIButtonTypeCustom];
???
??? rightbtn.frame=CGRectMake(POTOIMGX+POTOIMGW+10, self.view.center.y, 40, 40);
??? [rightbtn setBackgroundImage:[UIImage imageNamed:@"right_normal"] forState:UIControlStateNormal];
??? [rightbtn setBackgroundImage:[UIImage imageNamed:@"right_highlighted"] forState:UIControlStateHighlighted];
???
??? [self.view addSubview:rightbtn];
???
??? self.rightbtn=rightbtn;
??? [rightbtn addTarget:self action:@selector(rightclick:) forControlEvents:UIControlEventTouchUpInside];
??? //放在這里的話,只會(huì)創(chuàng)建一次,但是這個(gè)部分和[self change];部分有很嚴(yán)格的順序要求,并不人性化,可以考慮使用懶加載特性
//??? NSDictionary *dict1=@{@"name": @"biaoqingdi",@"desc":@"什么表情都弱爆了!"};
//??? NSDictionary *dict2=@{@"name": @"bingli",@"desc":@"病例"};
//??? NSDictionary *dict3=@{@"name": @"wangba",@"desc":@"烏龜"};
//??? NSDictionary *dict4=@{@"name": @"chiniupa",@"desc":@"吃牛扒"};
//??? NSDictionary *dict5=@{@"name": @"danteng",@"desc":@"蛋疼"};
//???
//??? self.array=@[dict1,dict2,dict3,dict4,dict5];
??? //這是一個(gè)初始化方法,調(diào)用change可以完成初始化的工作
??? [self change];
}

-(void)change
{
??? //每次調(diào)用都需要?jiǎng)?chuàng)建?有沒有什么解決辦法?
//??? NSDictionary *dict1=@{@"name": @"biaoqingdi",@"desc":@"什么表情都弱爆了!"};
//??? NSDictionary *dict2=@{@"name": @"bingli",@"desc":@"病例"};
//??? NSDictionary *dict3=@{@"name": @"wangba",@"desc":@"烏龜"};
//??? NSDictionary *dict4=@{@"name": @"chiniupa",@"desc":@"吃牛扒"};
//??? NSDictionary *dict5=@{@"name": @"danteng",@"desc":@"蛋疼"};
//???
//??? NSArray *array=@[dict1,dict2,dict3,dict4,dict5];
???
???
??? //設(shè)置照片
??? //先根據(jù)self.i取出數(shù)組中的元素,再取出元素(字典)中鍵值對(duì)應(yīng)的值
//??? self.icon.image=[UIImage imageNamed:array[self.i][@"name"]];
//??? self.lastlab.text=array[self.i][@"desc"];
?? // NSLog(@"%@",array[self.i][@"desc"]);
???
??? self.icon.image=[UIImage imageNamed:self.array[self.i][@"name"]];
??? self.lastlab.text=self.array[self.i][@"desc"];
???
??? [self.firstlab setText:[NSString stringWithFormat:@"%d/5",self.i+1]];
???
//??? switch (self.i) {
//??????? case 0:
//??????????? self.lastlab.text=@"什么表情都弱爆了!";
//??????????? self.icon.image=[UIImage imageNamed:@"biaoqingdi"];
//??????????? break;
//??????? case 1:
//??????????? self.lastlab.text=@"病例";
//??????????? self.icon.image=[UIImage imageNamed:@"bingli"];
//??????????? break;
//??????? case 2:
//?????????? self.lastlab.text=@"王八";
//??????????? self.icon.image=[UIImage imageNamed:@"wangba"];
//??????????? break;
//??????? case 3:
//?????????? self.lastlab.text=@"吃牛扒";
//??????????? self.icon.image=[UIImage imageNamed:@"chiniupa"];
//??????????? break;
//??????? case 4:
//???????????? self.lastlab.text=@"蛋疼!";
//??????????? self.icon.image=[UIImage imageNamed:@"danteng"];
//??????????? break;
//??? }
??? //控制按鈕的點(diǎn)擊,如果為5則右鍵失效,如果為1,則左鍵失效
??? self.leftbtn.enabled=(self.i!=0);
??? self.rightbtn.enabled=(self.i!=4);

}

//array的get方法
-(NSArray *)array
{
??? NSLog(@"需要獲取數(shù)組");
??? //只實(shí)例化一次
??? if (_array==nil) {
??????? NSLog(@"實(shí)例化數(shù)組");
??????? NSDictionary *dict1=@{@"name": @"biaoqingdi",@"desc":@"什么表情都弱爆了!"};
??????? NSDictionary *dict2=@{@"name": @"bingli",@"desc":@"病例"};
??????? NSDictionary *dict3=@{@"name": @"wangba",@"desc":@"烏龜"};
??????? NSDictionary *dict4=@{@"name": @"chiniupa",@"desc":@"吃牛扒"};
??????? NSDictionary *dict5=@{@"name": @"danteng",@"desc":@"蛋疼"};
??????? _array=@[dict1,dict2,dict3,dict4,dict5];
??? }
//??? NSDictionary *dict1=@{@"name": @"biaoqingdi",@"desc":@"什么表情都弱爆了!"};
//??? NSDictionary *dict2=@{@"name": @"bingli",@"desc":@"病例"};
//??? NSDictionary *dict3=@{@"name": @"wangba",@"desc":@"烏龜"};
//??? NSDictionary *dict4=@{@"name": @"chiniupa",@"desc":@"吃牛扒"};
//??? NSDictionary *dict5=@{@"name": @"danteng",@"desc":@"蛋疼"};
???
?? // _array=@[dict1,dict2,dict3,dict4,dict5];
??? return _array;
}

//向右按鍵
-(void)rightclick:(UIButton *)btn
{
??? self.i++;
??? [self change];
}

//向左按鍵
-(void)leftclick:(UIButton *)btn
{
??? self.i--;
??? [self change];
}


- (void)didReceiveMemoryWarning
{
??? [super didReceiveMemoryWarning];
}

@end


說明:

?

1> 定義控件屬性,注意:屬性必須是strong的,示例代碼如下:

復(fù)制代碼 代碼如下:

@property (nonatomic, strong) UIImageView *icon;


2> 在屬性的getter方法中實(shí)現(xiàn)懶加載,示例代碼如下:

?

復(fù)制代碼 代碼如下:

?


- (UIImageView *)icon

?

{

??? if (!_icon) {

??????? // 計(jì)算位置參數(shù)

??????? CGFloat imageW = 200;

??????? CGFloat imageX = (320 - imageW) / 2;

??????? CGFloat imageH = 200;

??????? CGFloat imageY = 80;

??????? // 實(shí)例化圖像視圖

??????? _icon = [[UIImageView alloc] initWithFrame:CGRectMake(imageX, imageY, imageW, imageH)];

??????? // 將圖像視圖添加到主視圖

??????? [self.view addSubview:_icon];

??? }

??? return _icon;

}


四、使用plist文件

?

(1)使用Plist文件的目的:將數(shù)據(jù)與代碼分離

(2)加載方法:

復(fù)制代碼 代碼如下:

NSString *path = [[NSBundle mainBundle] pathForResource:@"ImageData" ofType:@"plist"];

?

_imageList = [NSArray arrayWithContentsOfFile:path];


提示:通常在方法中出現(xiàn)File字眼,通常需要傳遞文件的全路徑作為參數(shù)

?

(3)代碼示例

復(fù)制代碼 代碼如下:

//
//? YYViewController.m
//? 03-圖片瀏覽器初步
//
//? Created by apple on 14-5-21.
//? Copyright (c) 2014年 itcase. All rights reserved.
//

?

#import "YYViewController.h"

#define POTOIMGW??? 200
#define POTOIMGH??? 300
#define POTOIMGX??? 60
#define? POTOIMGY??? 50


@interface YYViewController ()

//變量聲明!
@property(nonatomic,strong)UILabel *firstlab;
@property(nonatomic,strong)UILabel *lastlab;
@property(nonatomic,strong)UIImageView *icon;
@property(nonatomic,strong)UIButton *leftbtn;
@property(nonatomic,strong)UIButton *rightbtn;

@property(nonatomic,strong)NSArray *array;

-(void)change;
@property(nonatomic ,assign)int i;
@end

?

復(fù)制代碼 代碼如下:

?


@implementation YYViewController

?

- (void)viewDidLoad
{
??? [super viewDidLoad];
??? self.i=0;
??? //創(chuàng)建一個(gè)用來顯示序號(hào)的lable控件
??? UILabel *headlab=[[UILabel alloc]initWithFrame:CGRectMake(20, 10, 300, 30)];
???
? // [headlab setText:@"1/5"];
??? [headlab setTextAlignment:NSTextAlignmentCenter];
??? [headlab setTextColor:[UIColor blackColor]];
???
??? [self.view addSubview:headlab];
??? self.firstlab=headlab;
???
???
???
??? //創(chuàng)建一個(gè)裝載圖片的控件
??? UIImageView *potoimg=[[UIImageView alloc]initWithFrame:CGRectMake(POTOIMGX, POTOIMGY, POTOIMGW, POTOIMGH)];
???
??? UIImage *image=[UIImage imageNamed:@"biaoqingdi"];
??? potoimg.image=image;
???
??? [self.view addSubview:potoimg];
??? self.icon=potoimg;
???
??? //創(chuàng)建最下邊的描述圖片的lable控件
??? UILabel *desclab=[[UILabel alloc]initWithFrame:CGRectMake(20, 400, 300, 30)];
?? // [desclab setText:@"表情弱爆了!"];
??? [desclab setTextAlignment:NSTextAlignmentCenter];
??? [self.view addSubview:desclab];
??? self.lastlab=desclab;
???
???
??? //創(chuàng)建兩個(gè)方向鍵按鈕
??? //設(shè)置為自定義類型
??? //1.使用類創(chuàng)建對(duì)象
??? UIButton *leftbtn=[UIButton buttonWithType:UIButtonTypeCustom];
???
??? //2.設(shè)置對(duì)象的屬性(不要忘記設(shè)置坐標(biāo))
??? leftbtn.frame=CGRectMake(0, self.view.center.y, 40, 40);
??? [leftbtn setBackgroundImage:[UIImage imageNamed:@"left_normal"] forState:UIControlStateNormal];
??? [leftbtn setBackgroundImage:[UIImage imageNamed:@"left_highlighted"] forState:UIControlStateHighlighted];
???
??? //3.提交對(duì)象到視圖
??? [self.view addSubview:leftbtn];
???
??? self.leftbtn=leftbtn;
??? [leftbtn addTarget:self action:@selector(leftclick:) forControlEvents:UIControlEventTouchUpInside];
???
???
??? UIButton *rightbtn=[UIButton buttonWithType:UIButtonTypeCustom];
???
??? rightbtn.frame=CGRectMake(POTOIMGX+POTOIMGW+10, self.view.center.y, 40, 40);
??? [rightbtn setBackgroundImage:[UIImage imageNamed:@"right_normal"] forState:UIControlStateNormal];
??? [rightbtn setBackgroundImage:[UIImage imageNamed:@"right_highlighted"] forState:UIControlStateHighlighted];
???
??? [self.view addSubview:rightbtn];
???
??? self.rightbtn=rightbtn;
??? [rightbtn addTarget:self action:@selector(rightclick:) forControlEvents:UIControlEventTouchUpInside];
??? [self change];
}

-(void)change
{
??? self.icon.image=[UIImage imageNamed:self.array[self.i][@"name"]];
??? self.lastlab.text=self.array[self.i][@"desc"];
???
??? [self.firstlab setText:[NSString stringWithFormat:@"%d/5",self.i+1]];
???
??? self.leftbtn.enabled=(self.i!=0);
??? self.rightbtn.enabled=(self.i!=4);

}

//array的get方法
-(NSArray *)array
{
??? NSLog(@"需要獲取數(shù)組");
??? //只實(shí)例化一次
??? if (_array==nil) {
????
??????? NSString *path=[[NSBundle mainBundle] pathForResource:@"data" ofType:@"plist"];
??????? //數(shù)組的數(shù)據(jù)從文件獲取
?????? // _array=[NSArray arrayWithContentsOfFile:path];
??????? _array=[[NSArray alloc]initWithContentsOfFile:path];
??????? //打印查看包的位置
??????? NSLog(@"%@",path);
???????
?????? NSLog(@"實(shí)例化數(shù)組");
??? }

??? return _array;
}

//向右按鍵
-(void)rightclick:(UIButton *)btn
{
??? self.i++;
??? [self change];
}

//向左按鍵
-(void)leftclick:(UIButton *)btn
{
??? self.i--;
??? [self change];
}

- (void)didReceiveMemoryWarning
{
??? [super didReceiveMemoryWarning];
}

@end


(4)plist文件

?

?

?

201611392221000.png (868×338)

(5)實(shí)現(xiàn)效果

201611392239226.png (640×960)

五、補(bǔ)充

開發(fā)思路:

1.完成基本功能

2.考慮性能

(1)(初始化操作,可以直接調(diào)用change進(jìn)行)

(2)因?yàn)橐刂菩蛱?hào)和圖片兩個(gè)變量,所以考慮使用字典代替掉switch

(3)每次點(diǎn)擊,字典都需要?jiǎng)?chuàng)建一次,效率地下,可以考慮創(chuàng)建的這部分拿到初始化方法中去,這樣就只需要?jiǎng)?chuàng)建一次就ok了。

(4)考慮缺點(diǎn)(對(duì)代碼的順序要求極其嚴(yán)格)

(5)懶加載(需要的時(shí)候才加載,那么什么時(shí)候是需要的時(shí)候,及調(diào)用get方法的時(shí)候)

(6)每次都來一下?效率低下—》只有第一次調(diào)用get方法時(shí)為空,此時(shí)實(shí)例化并建立數(shù)組,其他時(shí)候直接返回成員變量(僅僅執(zhí)行一次)

注意點(diǎn):

1.方法的調(diào)用堆棧(順序)。

2.使用plist:讓數(shù)據(jù)的操作更加靈活,把數(shù)據(jù)弄到外面去,解除耦合性,讓耦合性不要太強(qiáng)。實(shí)際上是一個(gè)xml,是蘋果定義的一種特殊格式的xml。

3.bundle-包(只讀)

上文是iOS開發(fā)中圖片瀏覽器的實(shí)例講解,相信大家都有了一定的了解,想要了解更多的技術(shù)信息,請(qǐng)繼續(xù)關(guān)注武林技術(shù)頻道吧!

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 乳源| 鄢陵县| 扶沟县| 张掖市| 留坝县| 榆社县| 类乌齐县| 疏勒县| 泗洪县| 新田县| 汨罗市| 图们市| 镇赉县| 吉隆县| 城口县| 盐源县| 辰溪县| 娱乐| 加查县| 龙南县| 玛多县| 鹤壁市| 沁水县| 成都市| 离岛区| 平陆县| 锦州市| 新安县| 西乡县| 维西| 临朐县| 远安县| 庄河市| 葫芦岛市| 阳谷县| 塘沽区| 长沙市| 东辽县| 临颍县| 贡山| 朝阳市|