iOS_UITableView

  • 實(shí)現(xiàn)協(xié)議
@interface FoodsViewController ()<UITableViewDataSource,UITableViewDelegate>

@end
  • 添加到view
UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, screenWidth, 44)];
searchBar.placeholder = @"搜索";
searchBar.delegate = self;
menuTableView = [[UITableView alloc] initWithFrame:screenRect style:UITableViewStylePlain];
menuTableView.dataSource = self;
menuTableView.rowHeight = 350;
menuTableView.delegate = self;
menuTableView.tableHeaderView = searchBar;
[self.view addSubview:menuTableView];
  • 實(shí)現(xiàn)委托方法

//cell 的數(shù)量

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return menus.count;
}

// 分組的數(shù)量

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}

// 具體cell的返回

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UIImageView *imageview;
UILabel *nameLabel;
UILabel *contentLabel;
static NSString *cellIndetifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIndetifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIndetifier];
    imageview = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
    nameLabel = [[UILabel alloc]initWithFrame:CGRectMake(110, 0, 200, 30)];
    contentLabel = [[UILabel alloc]initWithFrame:CGRectMake(0, 110, screenWidth, 200)];
    [contentLabel setNumberOfLines:0];
    [cell addSubview:imageview];
    [cell addSubview:nameLabel];
    [cell addSubview:contentLabel];
}
NSString *content = [menus[indexPath.row] objectForKey:@"content"];
NSString *des = [menus[indexPath.row]   objectForKey:@"description"];
NSString *img = [menus[indexPath.row] objectForKey:@"img"];
NSString *name = [menus[indexPath.row] objectForKey:@"name"];
NSLog(@"%@, %@, %@, %@", content,des,img,name);
[imageview sd_setImageWithURL:[NSURL URLWithString:[@"http://www.yi18.net/" stringByAppendingString:img]]];

contentLabel.text = content;
nameLabel.text = name;

return cell;

}

// 選中單個(gè)cell

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
DetailsViewController *detailsVC = [[DetailsViewController alloc] init];
detailsVC.dic = [shots objectAtIndex:indexPath.row];
[self presentViewController:detailsVC animated:YES completion:nil];
}
  • 添加在頂部的SearcherBar
    實(shí)現(xiàn)協(xié)議UISearchBarDelegate

//回調(diào)代理方法
- (void) searchBarSearchButtonClicked:(UISearchBar *)searchBar
{

NSString *editString = searchBar.text;
[MBProgressHUD showHUDAddedTo:self.view animated:YES];
NSString *searchUrl = @"http://apis.baidu.com/yi18/menu/search";
NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
[dic setObject:@"1" forKey:@"page"];
[dic setObject:@"20" forKey:@"limit"];
[dic setObject:editString forKey:@"keyword"];
[HttpUtils.shareInstance GET:searchUrl
                      apikey:@"bcab4059a164b3c0c0f515c96d94b884"
                  parameters:dic
                     success:^(AFHTTPRequestOperation *operation, id responseObject) {
                         [MBProgressHUD hideAllHUDsForView:self.view animated:YES];
                         NSLog(@"success %@", responseObject);
                         
                         NSMutableArray *temp = [responseObject objectForKey:@"yi18"];
                         menus = temp;
                         [menuTableView reloadData];
                         
                     }
                     failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                         NSLog(@"error %@", error);
                         [MBProgressHUD hideAllHUDsForView:self.view animated:YES];
                     }
 ];

}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末绿渣,一起剝皮案震驚了整個(gè)濱河市中符,隨后出現(xiàn)的幾起案子档插,更是在濱河造成了極大的恐慌,老刑警劉巖调煎,帶你破解...
    沈念sama閱讀 212,718評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件烈涮,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡窖剑,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)戈稿,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)西土,“玉大人,你說(shuō)我怎么就攤上這事鞍盗⌒枇耍” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 158,207評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵般甲,是天一觀的道長(zhǎng)肋乍。 經(jīng)常有香客問(wèn)我,道長(zhǎng)敷存,這世上最難降的妖魔是什么墓造? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,755評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮锚烦,結(jié)果婚禮上觅闽,老公的妹妹穿的比我還像新娘。我一直安慰自己涮俄,他們只是感情好蛉拙,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,862評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著彻亲,像睡著了一般孕锄。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上苞尝,一...
    開(kāi)封第一講書(shū)人閱讀 50,050評(píng)論 1 291
  • 那天畸肆,我揣著相機(jī)與錄音,去河邊找鬼野来。 笑死恼除,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播豁辉,決...
    沈念sama閱讀 39,136評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼令野,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了徽级?” 一聲冷哼從身側(cè)響起气破,我...
    開(kāi)封第一講書(shū)人閱讀 37,882評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎餐抢,沒(méi)想到半個(gè)月后现使,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,330評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡旷痕,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,651評(píng)論 2 327
  • 正文 我和宋清朗相戀三年碳锈,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片欺抗。...
    茶點(diǎn)故事閱讀 38,789評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡售碳,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出绞呈,到底是詐尸還是另有隱情贸人,我是刑警寧澤,帶...
    沈念sama閱讀 34,477評(píng)論 4 333
  • 正文 年R本政府宣布佃声,位于F島的核電站艺智,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏圾亏。R本人自食惡果不足惜十拣,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,135評(píng)論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望召嘶。 院中可真熱鬧父晶,春花似錦、人聲如沸弄跌。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,864評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)铛只。三九已至埠胖,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間淳玩,已是汗流浹背直撤。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,099評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留蜕着,地道東北人谋竖。 一個(gè)月前我還...
    沈念sama閱讀 46,598評(píng)論 2 362
  • 正文 我出身青樓红柱,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親蓖乘。 傳聞我的和親對(duì)象是個(gè)殘疾皇子锤悄,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,697評(píng)論 2 351

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