加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
PublicFileViewController.m 2.15 KB
一键复制 编辑 原始数据 按行查看 历史
xiexiaolong.xxl 提交于 2024-06-18 15:06 . init
//
// PublicFileViewController.m
// officeMobile
//
// Created by Points on 15-3-10.
// Copyright (c) 2015年 com.kinggrid. All rights reserved.
//
#import "PublicFileViewController.h"
#import "ADTGovermentFileInfo.h"
@interface PublicFileViewController ()<UITableViewDataSource,UITableViewDelegate>
@property(nonatomic,strong)ADTGovermentFileInfo *m_infoData;
@end
@implementation PublicFileViewController
- (id)initWithData:(NSDictionary *)data
{
self.m_currentData = data;
if(self = [super initWithStyle:UITableViewStylePlain withIsNeedPullDown:YES withIsNeedPullUpLoadMore:NO withIsNeedBottobBar:NO])
{
self.tableView.dataSource = self;
self.tableView.delegate = self;
}
return self;
}
- (void)viewDidLoad {
[super viewDidLoad];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)requestData:(BOOL)isRefresh
{
[HTTP_MANAGER getTodoFileInfoWith:[self.m_currentData stringWithFilted:@"messageid"]
successedBlock:^(NSDictionary *retDic){
self.m_infoData = [ADTGovermentFileInfo getInfoFrom:retDic];
[self reloadDeals];
} failedBolck:FAILED_BLOCK{
[self reloadDeals];
}];
}
#pragma mark - TableViewDelegate
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 60;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.m_arrData.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString * identify = @"spe";
UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:identify];
if(cell == nil)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identify];
}
return cell;
}
@end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化