Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC-iOS
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
311
Issues
311
List
Boards
Labels
Service Desk
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
VLC-iOS
Commits
fd3eccb7
Commit
fd3eccb7
authored
Mar 20, 2018
by
Pierre SAGASPE
Committed by
Carola Nitz
Mar 22, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VLCLocalNetworkListViewController : add activity indicator when tableview loading
(cherry picked from commit
679c264a
)
parent
5eed3d6f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
Sources/LocalNetworkConnectivity/VLCNetworkListViewController.m
...s/LocalNetworkConnectivity/VLCNetworkListViewController.m
+11
-0
No files found.
Sources/LocalNetworkConnectivity/VLCNetworkListViewController.m
View file @
fd3eccb7
...
@@ -20,6 +20,7 @@ NSString *VLCNetworkListCellIdentifier = @"VLCNetworkListCellIdentifier";
...
@@ -20,6 +20,7 @@ NSString *VLCNetworkListCellIdentifier = @"VLCNetworkListCellIdentifier";
{
{
NSMutableArray
*
_searchData
;
NSMutableArray
*
_searchData
;
UITapGestureRecognizer
*
_tapTwiceGestureRecognizer
;
UITapGestureRecognizer
*
_tapTwiceGestureRecognizer
;
UIActivityIndicatorView
*
_activityIndicator
;
}
}
@end
@end
...
@@ -46,6 +47,13 @@ NSString *VLCNetworkListCellIdentifier = @"VLCNetworkListCellIdentifier";
...
@@ -46,6 +47,13 @@ NSString *VLCNetworkListCellIdentifier = @"VLCNetworkListCellIdentifier";
_tableView
.
separatorStyle
=
UITableViewCellSeparatorStyleNone
;
_tableView
.
separatorStyle
=
UITableViewCellSeparatorStyleNone
;
_tableView
.
indicatorStyle
=
UIScrollViewIndicatorStyleWhite
;
_tableView
.
indicatorStyle
=
UIScrollViewIndicatorStyleWhite
;
self
.
view
=
_tableView
;
self
.
view
=
_tableView
;
_activityIndicator
=
[[
UIActivityIndicatorView
alloc
]
initWithActivityIndicatorStyle
:
UIActivityIndicatorViewStyleWhiteLarge
];
_activityIndicator
.
center
=
_tableView
.
center
;
_activityIndicator
.
autoresizingMask
=
UIViewAutoresizingFlexibleBottomMargin
|
UIViewAutoresizingFlexibleLeftMargin
|
UIViewAutoresizingFlexibleRightMargin
|
UIViewAutoresizingFlexibleTopMargin
;
_activityIndicator
.
hidesWhenStopped
=
YES
;
[
_activityIndicator
startAnimating
];
[
self
.
view
addSubview
:
_activityIndicator
];
}
}
-
(
void
)
viewDidLoad
-
(
void
)
viewDidLoad
...
@@ -156,6 +164,9 @@ NSString *VLCNetworkListCellIdentifier = @"VLCNetworkListCellIdentifier";
...
@@ -156,6 +164,9 @@ NSString *VLCNetworkListCellIdentifier = @"VLCNetworkListCellIdentifier";
{
{
UIColor
*
color
=
(
indexPath
.
row
%
2
==
0
)?
[
UIColor
blackColor
]:
[
UIColor
VLCDarkBackgroundColor
];
UIColor
*
color
=
(
indexPath
.
row
%
2
==
0
)?
[
UIColor
blackColor
]:
[
UIColor
VLCDarkBackgroundColor
];
cell
.
backgroundColor
=
cell
.
titleLabel
.
backgroundColor
=
cell
.
folderTitleLabel
.
backgroundColor
=
cell
.
subtitleLabel
.
backgroundColor
=
color
;
cell
.
backgroundColor
=
cell
.
titleLabel
.
backgroundColor
=
cell
.
folderTitleLabel
.
backgroundColor
=
cell
.
subtitleLabel
.
backgroundColor
=
color
;
if
([
indexPath
row
]
==
((
NSIndexPath
*
)[[
tableView
indexPathsForVisibleRows
]
lastObject
]).
row
)
[
_activityIndicator
stopAnimating
];
}
}
#pragma mark - Search Controller Delegate
#pragma mark - Search Controller Delegate
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment