- 博客(5)
- 收藏
- 关注
原创 网络请求封装
.h文件 `` typedef NS_ENUM(NSUInteger, RequestType) { GET, POST }; typedef void(^requestBlock)(id dic); @interface NetRequestManager : NSObject @property (nonatomic,strong)requestBlock requestBlock; /** ...
2019-02-18 08:20:02 152
原创 uialertController的使用方法
通过添加输入框使用uialertController UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@“提示” message:@“请输入Section名称” preferredStyle:UIAlertControllerStyleAlert]; //以下方法就可以实现在提示框中输...
2019-01-18 19:03:47 195
转载 解决ios导航栏自定义左按钮图片横向拉伸问题
UIView *leftView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 60, 60)]; UIButton *leftbtn =[UIButton buttonWithType:UIButtonTypeCustom]; leftbtn.frame = CGRectMake(-15, -5, 55, 55); [leftbtn setIm...
2019-01-15 09:01:53 547
转载 FMDB使用方法
** FMDB创建单例的使用方法* //单利方法 +(instancetype)initData; //初始化数据库 -(void)initSql; //初始化表格 -(void)initTable; //添加数据 -(void)addData:(ClassMessage *)data; //修改数据 -(void)upData:(ClassMessage *)data; //删除数据 -...
2019-01-07 15:28:03 173
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人