服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS开发之tableView点击下拉扩展与内嵌collectionView上传图片效果

iOS开发之tableView点击下拉扩展与内嵌collectionView上传图片效果

2021-01-16 14:44Chason.cheng IOS

这篇文章主要介绍了iOS开发之tableView点击下拉扩展与内嵌collectionView上传图片效果的相关资料,需要的朋友可以参考下

废话不多说了,直奔主题。

//需要的效果

iOS开发之tableView点击下拉扩展与内嵌collectionView上传图片效果

1.设置window的根视图控制器为一个uitableviewcontroller

?
1
2
3
4
5
6
7
8
9
10
11
12
#import "appdelegate.h"
#import "yctableviewcontroller.h"
@interface appdelegate ()
@end
@implementation appdelegate
- (bool)application:(uiapplication *)application didfinishlaunchingwithoptions:(nsdictionary *)launchoptions {
self.window = [[uiwindow alloc] initwithframe:[uiscreen mainscreen].bounds];
self.window.backgroundcolor = [uicolor whitecolor];
self.window.rootviewcontroller = [[uinavigationcontroller alloc] initwithrootviewcontroller:[[yctableviewcontroller alloc] init]];
[self.window makekeyandvisible];
return yes;
}

2.uitableviewcontroller

iOS开发之tableView点击下拉扩展与内嵌collectionView上传图片效果iOS开发之tableView点击下拉扩展与内嵌collectionView上传图片效果

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
// copyright © 2016年 chason. all rights reserved.
//
#import <uikit/uikit.h>
#import "depositfeeheader.h"
#import "depositfeewithapplytableviewcell.h"
#import "appmodel.h"
#import "mycollectionviewcell.h"
#import "sectionheaderviewcollectionreusableview.h"
@interface yctableviewcontroller : uitableviewcontroller<uicollectionviewdatasource, uicollectionviewdelegate, uicollectionviewdelegateflowlayout, uiimagepickercontrollerdelegate, uiactionsheetdelegate, uinavigationcontrollerdelegate>
@property (nonatomic, strong) nsmutablearray *dataarray;
@property (nonatomic, strong) nsmutablearray *ownhobby;//上传图片数组1
@property (nonatomic, strong) nsmutablearray *imagearray;//上传图片数组2
@property (nonatomic, strong) uicollectionview *collection;
@property (nonatomic, strong) uiactionsheet *actionsheet;
@property (nonatomic, strong) appmodel *model;
@property (nonatomic, assign) nsinteger reupdate;
@property (nonatomic, strong) nsstring *imagestring;
@property (nonatomic, assign) nsinteger number;
@end
// copyright © 2016年 chason. all rights reserved.
//
#import "yctableviewcontroller.h"
//手机屏幕的宽和高
#define kscreenwidth [uiscreen mainscreen].bounds.size.width
#define kscreenheight [uiscreen mainscreen].bounds.size.height
@interface yctableviewcontroller ()
@end
@implementation yctableviewcontroller
- (void)viewdidload {
[super viewdidload];
_dataarray = [[nsmutablearray alloc] initwithcapacity:1];
for (int i = 0; i < 3; i++) {
appmodel *model = [[appmodel alloc] init];
[_dataarray addobject:model];
}
_ownhobby = [nsmutablearray array];
_reupdate = 10000;//赋初值
}
- (nsinteger)tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section
{
appmodel *model = _dataarray[section];
if ([model is_open]) {
return 1;
}else
{
return 0;
}
}
- (nsinteger)numberofsectionsintableview:(uitableview *)tableview
{
[_ownhobby removeallobjects];
for (int i = 0; i < _dataarray.count; i++) {
_imagearray= [nsmutablearray array];
[_ownhobby addobject:_imagearray];
}
return _dataarray.count;
}
- (cgfloat)tableview:(uitableview *)tableview heightforfooterinsection:(nsinteger)section
{
appmodel *model = _dataarray[section];
if (model.is_open == yes || section == _dataarray.count - 1) {
return 0.01;
}else {
return 10;
}
}
-(uiview *)tableview:(uitableview *)tableview viewforfooterinsection:(nsinteger)section
{
uiview *backview = [[uiview alloc] init];
backview.backgroundcolor = [uicolor whitecolor];
return backview;
}
- (cgfloat)tableview:(uitableview *)tableview heightforheaderinsection:(nsinteger)section
{
return 40;
}
- (cgfloat)tableview:(uitableview *)tableview heightforrowatindexpath:(nsindexpath *)indexpath
{
return 200;
}
- (uiview *)tableview:(uitableview *)tableview viewforheaderinsection:(nsinteger)section
{
depositfeeheader *depositheader = [tableview dequeuereusableheaderfooterviewwithidentifier:@"deposit"];
if (depositheader == nil) {
depositheader = [[depositfeeheader alloc] initwithreuseidentifier:@"deposit"];
}
depositheader.tag = 1000 + section;
[depositheader.tap addtarget:self action:@selector(showdetail:)];
cgfloat rota;
appmodel *model = _dataarray[section];
if ([model is_open] == no) {
rota=0;
}
else{
rota=m_pi_2;
}
[uiview animatewithduration:0.1 animations:^{
depositheader.listimage.transform = cgaffinetransformmakerotation(rota);
}];
return depositheader;
}
- (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath
{
if (indexpath.section != _reupdate) {
appmodel *model = _dataarray[indexpath.section];
depositfeewithapplytableviewcell *cell = [[depositfeewithapplytableviewcell alloc] initwithstyle:uitableviewcellstyledefault reuseidentifier:@"applycell"];
uicollectionviewflowlayout *flowlayout = [[uicollectionviewflowlayout alloc]init];
flowlayout.minimuminteritemspacing = 5;
flowlayout.minimumlinespacing = 5;
flowlayout.sectioninset = uiedgeinsetsmake(0 , 5 , 0 , 10 );
flowlayout.itemsize = cgsizemake(40 , 40);
_collection = [[uicollectionview alloc]initwithframe:cgrectmake(10, 10, cell.backview.frame.size.width - 20, 90) collectionviewlayout:flowlayout];
[_collection registerclass:[sectionheaderviewcollectionreusableview class] forsupplementaryviewofkind:uicollectionelementkindsectionheader withreuseidentifier:@"head"];
_collection.tag = indexpath.section;
_collection.bounces = no;
_collection.delegate = self;
_collection.datasource = self;
_collection.backgroundcolor = [uicolor whitecolor];
[_collection registerclass:[mycollectionviewcell class] forcellwithreuseidentifier:@"identifier"];
[cell.backview addsubview:_collection];
[cell.shouldbtn addtarget:self action:@selector(upimage:) forcontrolevents:uicontroleventtouchupinside];
cell.shouldbtn.tag = indexpath.row + 2000;
cell.selectionstyle = uitableviewcellselectionstylenone;
return cell;
}else
{
return nil;
}
}
//对照片进行处理
- (void)upimage:(uibutton *)btn
{
}
-(void)textfiledshow
{
if ([_ownhobby[_number] count] == 9) {
uialertcontroller *alert1 = [uialertcontroller alertcontrollerwithtitle:@"上传照片不能超过9张, 点击图片可以删除" message:@"" preferredstyle:uialertcontrollerstylealert];
uialertaction *action = [uialertaction actionwithtitle:@"确定" style:uialertactionstyledefault handler:^(uialertaction * _nonnull action) {
}];
[alert1 addaction:action];
[self.navigationcontroller presentviewcontroller:alert1 animated:yes completion:nil];
}
else
{
[self callactionsheet];
}
}
//弹框提示相片来源
- (void)callactionsheet
{
if ([uiimagepickercontroller issourcetypeavailable:uiimagepickercontrollersourcetypecamera]) {
self.actionsheet = [[uiactionsheet alloc] initwithtitle:@"选择照片" delegate:self cancelbuttontitle:@"取消" destructivebuttontitle:nil otherbuttontitles:@"拍照", @"从相册选择", nil];
}else
{
self.actionsheet = [[uiactionsheet alloc] initwithtitle:@"选择照片" delegate:self cancelbuttontitle:@"取消" destructivebuttontitle:nil otherbuttontitles:@"从相册选择", nil];
}
[self.actionsheet showinview:self.tableview];
}
- (void)actionsheet:(uiactionsheet *)actionsheet clickedbuttonatindex:(nsinteger)buttonindex
{
nsuinteger sourcetype = uiimagepickercontrollersourcetypephotolibrary;
//pand是否支持相机
if ([uiimagepickercontroller issourcetypeavailable:uiimagepickercontrollersourcetypecamera]) {
switch (buttonindex) {
case 0:
sourcetype = uiimagepickercontrollersourcetypecamera;
break;
case 1:
sourcetype = uiimagepickercontrollersourcetypephotolibrary;
break;
default:
return;
}
}else
{
if (buttonindex == 1) {
return;
}else
{
sourcetype = uiimagepickercontrollersourcetypesavedphotosalbum;
}
}
uiimagepickercontroller *imagepicker = [[uiimagepickercontroller alloc] init];
imagepicker.delegate = self;
imagepicker.allowsediting = yes;
imagepicker.sourcetype = sourcetype;
[self.navigationcontroller presentviewcontroller:imagepicker animated:yes completion:^{
}];
}
-(void)imagepickercontroller:(uiimagepickercontroller *)picker didfinishpickingmediawithinfo:(nsdictionary<nsstring *,id> *)info
{
[picker dismissviewcontrolleranimated:yes completion:^{
}];
[_ownhobby[_number] addobject:[info objectforkey:uiimagepickercontrolleroriginalimage]];
[_collection reloaddata];
}

iOS开发之tableView点击下拉扩展与内嵌collectionView上传图片效果

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
-(uicollectionviewcell *)collectionview:(uicollectionview *)collectionview cellforitematindexpath:(nsindexpath *)indexpath
{
_number = collectionview.tag;
if ([_ownhobby[_number] count] == indexpath.row) {
mycollectionviewcell *cell = [collectionview dequeuereusablecellwithreuseidentifier:@"identifier" forindexpath:indexpath];
uitapgesturerecognizer *tap = [[uitapgesturerecognizer alloc]initwithtarget:self action:@selector(textfiledshow)];
[cell.imageview addgesturerecognizer:tap];
cell.imageview.userinteractionenabled = yes;
cell.cellstyle = cellstyleadd;
cell.layer.maskstobounds = no;
cell.layer.borderwidth = 0;
cell.layer.cornerradius = 0;
[cell layoutsubviews];
return cell;
}
else
{
mycollectionviewcell *cell = [collectionview dequeuereusablecellwithreuseidentifier:@"identifier" forindexpath:indexpath];
cell.photo.image = _ownhobby[_number][indexpath.row];
cell.cellstyle = 1;
[cell layoutsubviews];
[cell.imageview removefromsuperview];
return cell;
}
}
-(nsinteger)numberofsectionsincollectionview:(uicollectionview *)collectionview
{
return 1;
}
-(nsinteger)collectionview:(uicollectionview *)collectionview numberofitemsinsection:(nsinteger)section
{
return [_ownhobby[_number] count] + 1;
}
#pragma mark 头视图size
-(cgsize)collectionview:(uicollectionview *)collectionview layout:(uicollectionviewlayout *)collectionviewlayout referencesizeforheaderinsection:(nsinteger)section
{
cgsize size = {0.01, 0.01};
return size;
}
#pragma mark 每个item大小
-(cgsize)collectionview:(uicollectionview *)collectionview layout:(uicollectionviewlayout *)collectionviewlayout sizeforitematindexpath:(nsindexpath *)indexpath
{
return cgsizemake(40, 40);
}
-(cgfloat)lengthwithstring:(nsstring *)string
{
return [string length];
}
-(void)collectionview:(uicollectionview *)collectionview didselectitematindexpath:(nsindexpath *)indexpath
{
if ([_ownhobby[_number] count]) {
[_ownhobby[_number] removeobjectatindex:indexpath.row];
[_collection reloaddata];
}
}
- (void)showdetail:(uitapgesturerecognizer *)tap
{
appmodel *model = _dataarray[tap.view.tag - 1000];
if ([model is_open]) {
model.is_open = no;
}else
{
model.is_open = yes;
}
[self.tableview reloadsections:[nsindexset indexsetwithindex:tap.view.tag - 1000] withrowanimation:uitableviewrowanimationnone];
}
@end

iOS开发之tableView点击下拉扩展与内嵌collectionView上传图片效果

3.自定义tableview的header和cell

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
//header
// copyright © 2016年 chason. all rights reserved.
//
#import <uikit/uikit.h>
@interface depositfeeheader : uitableviewheaderfooterview
@property (nonatomic, strong) uilabel *titlelabel;
@property (nonatomic, strong) uiimageview *listimage;//尾按钮
@property (nonatomic, strong) uigesturerecognizer *tap;
@end
// copyright © 2016年 chason. all rights reserved.
//
#import "depositfeeheader.h"
//手机屏幕的宽和高
#define kscreenwidth [uiscreen mainscreen].bounds.size.width
#define kscreenheight [uiscreen mainscreen].bounds.size.height
@implementation depositfeeheader
- (instancetype)initwithreuseidentifier:(nsstring *)reuseidentifier
{
self = [super initwithreuseidentifier:reuseidentifier];
if (self) {
uiview *backview = [[uiview alloc] initwithframe:cgrectmake(0, 0, kscreenwidth, 40)];
backview.backgroundcolor = [uicolor whitecolor];
[self addsubview:backview];
self.titlelabel = [[uilabel alloc] initwithframe:cgrectmake(20, 10, kscreenwidth - 45, 20)];
self.titlelabel.text = @"车辆押金";
self.titlelabel.userinteractionenabled = yes;
self.titlelabel.textcolor = [uicolor graycolor];
[backview addsubview:self.titlelabel];
self.listimage = [[uiimageview alloc] initwithframe:cgrectmake(kscreenwidth - 25, 10, 10, 20)];
self.listimage.image = [uiimage imagenamed:@"jiantou.png"];
[backview addsubview:self.listimage];
uiimageview *headerline = [[uiimageview alloc] initwithframe:cgrectmake(0, 0, kscreenwidth, 1)];
headerline.image = [uiimage imagenamed:@"line"];
[backview addsubview:headerline];
uiimageview *footerline = [[uiimageview alloc] initwithframe:cgrectmake(0, 39, kscreenwidth, 1)];
footerline.image = [uiimage imagenamed:@"line"];
[backview addsubview:footerline];
self.tap = [[uitapgesturerecognizer alloc] init];
[self addgesturerecognizer:self.tap];
}
return self;
}
@end
//cell
// copyright © 2016年 chason. all rights reserved.
//
#import <uikit/uikit.h>
@interface depositfeewithapplytableviewcell : uitableviewcell
@property (nonatomic, strong) uiview *backview;
@property (nonatomic, strong) uibutton *camerabtn;
@property (nonatomic, strong) uiimageview *photoimg;
@property (nonatomic, strong) uilabel *updatepresent;
@property (nonatomic, strong) uibutton *shouldbtn;
@end
// copyright © 2016年 chason. all rights reserved.
//
#import "depositfeewithapplytableviewcell.h"
//手机屏幕的宽和高
#define kscreenwidth [uiscreen mainscreen].bounds.size.width
#define kscreenheight [uiscreen mainscreen].bounds.size.height
@implementation depositfeewithapplytableviewcell
- (instancetype)initwithstyle:(uitableviewcellstyle)style reuseidentifier:(nsstring *)reuseidentifier
{
self = [super initwithstyle:style reuseidentifier:reuseidentifier];
if (self) {
_backview = [[uiview alloc] initwithframe:cgrectmake(20, 15, kscreenwidth - 40, 170)];
[self addsubview:_backview];
[self adddottedlinefromimageview:_backview];
self.updatepresent = [[uilabel alloc] initwithframe:cgrectmake(0, 0, kscreenwidth - 40, 20)];
self.updatepresent.center = cgpointmake((kscreenwidth - 40) / 2, 110);
self.updatepresent.text = @"点击左上角按钮添加照片";
self.updatepresent.textcolor = [uicolor lightgraycolor];
self.updatepresent.textalignment = nstextalignmentcenter;
self.updatepresent.font = [uifont systemfontofsize:14];
[_backview addsubview:self.updatepresent];
self.shouldbtn = [uibutton buttonwithtype:uibuttontypecustom];
self.shouldbtn.frame = cgrectmake((kscreenwidth - 40) / 2 - 45, 130, 90, 20);
[self.shouldbtn settitlecolor:[uicolor whitecolor] forstate:uicontrolstatenormal];
[self.shouldbtn settitle:@"立即上传" forstate:uicontrolstatenormal];
self.shouldbtn.layer.cornerradius = 5;
self.shouldbtn.backgroundcolor = [uicolor colorwithred:18/255.0 green:129/255.0 blue:201/255.0 alpha:1];
[_backview addsubview:self.shouldbtn];
}
return self;
}
//添加虚线框
- (void)adddottedlinefromimageview:(uiview *)superview{
cgfloat w = superview.frame.size.width;
cgfloat h = superview.frame.size.height;
cgfloat padding = 20;
//创建四个imageview作边框
for (nsinteger i = 0; i<4; i++) {
uiimageview *imageview = [[uiimageview alloc] init];
imageview.backgroundcolor = [uicolor clearcolor];
if (i == 0) {
imageview.frame = cgrectmake(0, 0, w, padding);
}else if (i == 1){
imageview.frame = cgrectmake(0, 0, padding, h);
}else if (i == 2){
imageview.frame = cgrectmake(0, h - padding, w, padding);
}else if (i == 3){
imageview.frame = cgrectmake(w - padding, 0, padding, h);
}
[superview addsubview:imageview];
uigraphicsbeginimagecontext(imageview.frame.size); //开始画线
[imageview.image drawinrect:cgrectmake(0, 0, imageview.frame.size.width, imageview.frame.size.height)];
cgcontextsetlinecap(uigraphicsgetcurrentcontext(), kcglinecapround); //设置线条终点形状
cgfloat lengths[] = {10,5};
cgcontextref line = uigraphicsgetcurrentcontext();
cgcontextsetstrokecolorwithcolor(line, [uicolor blackcolor].cgcolor);
cgcontextsetlinedash(line, 0, lengths, 2); //画虚线
cgcontextmovetopoint(line, 0, 0); //开始画线
if (i == 0) {
cgcontextaddlinetopoint(line, w, 0);
}else if (i == 1){
cgcontextaddlinetopoint(line, 0, w);
}else if (i == 2){
cgcontextmovetopoint(line, 0, padding);
cgcontextaddlinetopoint(line, w, padding);
}else if (i == 3){
cgcontextmovetopoint(line, padding, 0);
cgcontextaddlinetopoint(line, padding, w);
}
cgcontextstrokepath(line);
imageview.image = uigraphicsgetimagefromcurrentimagecontext();
}
}
@end

4.collectionview布局和自定义item

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#import <uikit/uikit.h>
@interface sectionheaderviewcollectionreusableview : uicollectionreusableview
@property(nonatomic, strong)uilabel *titlelabel;
@end
#import "sectionheaderviewcollectionreusableview.h"
@implementation sectionheaderviewcollectionreusableview
-(instancetype)initwithframe:(cgrect)frame
{
self = [super initwithframe:frame];
if (self) {
[self createviews];
}
return self;
}
-(void)createviews
{
_titlelabel = [[uilabel alloc]init];
[self addsubview:_titlelabel];
}
-(void)layoutsubviews
{
[super layoutsubviews];
_titlelabel.frame = cgrectmake(20, 30, 375, 50);
_titlelabel.font = [uifont systemfontofsize:20];
}
@end
collectionview的item
#import <uikit/uikit.h>
@interface mycollectionviewcell : uicollectionviewcell
typedef enum : nsinteger
{
cellstyledefault = 0,
cellstyleselected = 1,
cellstyleadd = 2,
}collectionviewcellstyle;
@property(nonatomic, assign)collectionviewcellstyle cellstyle;
@property(nonatomic, strong)uiimageview *photo;
@property(nonatomic, strong)uiimageview *imageview;
@property(nonatomic, strong)nsarray *array;
@property(nonatomic, strong)nsmutablearray *dataarray;
-(void)layoutsubviews;
@end
#import "mycollectionviewcell.h"
@implementation mycollectionviewcell
-(instancetype)initwithframe:(cgrect)frame
{
self = [super initwithframe:frame];
if (self) {
_photo = [[uiimageview alloc]init];
_imageview = [[uiimageview alloc]init];
}
return self;
}
-(void)layoutsubviews
{
[super layoutsubviews];
[_photo setframe:self.bounds];
_imageview.frame = self.bounds;
switch (_cellstyle) {
case cellstyledefault:
self.layer.bordercolor = [uicolor colorwithred:0 green:0.68 blue:0.94 alpha:1].cgcolor;
self.layer.maskstobounds = yes;
self.layer.borderwidth = 1.8;
//self.layer.cornerradius = 20;
self.backgroundcolor = [uicolor whitecolor];
[self.contentview addsubview:_photo];
break;
case cellstyleselected:
self.layer.bordercolor = [uicolor colorwithred:0 green:0.68 blue:0.94 alpha:1].cgcolor;
self.layer.maskstobounds = yes;
self.layer.borderwidth = 1.8;
//self.layer.cornerradius = 20;
self.backgroundcolor = [uicolor colorwithred:0 green:0.68 blue:0.94 alpha:1];
[self.contentview addsubview:_photo];
break;
case cellstyleadd:
[self.imageview setimage:[uiimage imagenamed:@"addphoto.png"]];
self.backgroundcolor = [uicolor whitecolor];
[self.contentview addsubview:_imageview];
break;
default:
break;
}
}
@end

5.model

?
1
2
3
4
5
6
7
8
9
#import <foundation/foundation.h>
#import <uikit/uikit.h>
@interface appmodel : nsobject
@property (nonatomic, assign) bool is_open;
@end
#import "appmodel.h"
@implementation appmodel
@end
//设置model是为了设置一个bool类型的变量,用来记录tableview的cell是否展开,从而进行reloadsection操作,进行动画展开或收缩.

延伸 · 阅读

精彩推荐
  • IOSiOS APP实现微信H5支付示例总结

    iOS APP实现微信H5支付示例总结

    这篇文章主要介绍了iOS APP实现微信H5支付示例总结,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下...

    一张小A11332021-06-01
  • IOSIOS网络请求之AFNetWorking 3.x 使用详情

    IOS网络请求之AFNetWorking 3.x 使用详情

    本篇文章主要介绍了IOS网络请求之AFNetWorking 3.x 使用详情,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    总李写代码6892021-03-04
  • IOSiOS中时间与时间戳的相互转化实例代码

    iOS中时间与时间戳的相互转化实例代码

    这篇文章主要介绍了iOS中时间与时间戳的相互转化实例代码,非常具有实用价值,需要的朋友可以参考下。...

    张无忌!4812021-03-09
  • IOSiOS逆向教程之logify跟踪方法的调用

    iOS逆向教程之logify跟踪方法的调用

    这篇文章主要给大家介绍了关于iOS逆向教程之logify跟踪方法调用的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学...

    Mr.Guo11472021-04-28
  • IOSiOS10 Xcode8适配7个常见问题汇总

    iOS10 Xcode8适配7个常见问题汇总

    这篇文章主要为大家详细汇总了iOS10 Xcode8适配7个常见问题,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    索马里猫10332021-02-01
  • IOSxcode8提交ipa失败无法构建版本问题的解决方案

    xcode8提交ipa失败无法构建版本问题的解决方案

    xcode升级到xcode8后发现构建不了新的版本。怎么解决呢?下面小编给大家带来了xcode8提交ipa失败无法构建版本问题的解决方案,非常不错,一起看看吧...

    Cinna丶7542021-02-03
  • IOS谈一谈iOS单例模式

    谈一谈iOS单例模式

    这篇文章主要和大家谈一谈iOS中的单例模式,单例模式是一种常用的软件设计模式,想要深入了解iOS单例模式的朋友可以参考一下...

    彭盛凇11872021-01-19
  • IOSiOS常见的几个修饰词深入讲解

    iOS常见的几个修饰词深入讲解

    这篇文章主要给大家介绍了关于iOS常见的几个修饰词的相关资料,iOS修饰词包括assign、weak、strong、retain、copy、nonatomic、atomic、readonly、readwrite,文中通过示...

    郡王丶千夜7422021-05-10