Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC-iOS
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
264
Issues
264
List
Boards
Labels
Milestones
Merge Requests
4
Merge Requests
4
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
VLC-iOS
Commits
d4634a7e
Commit
d4634a7e
authored
May 10, 2016
by
Pierre SAGASPE
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
onedrive : displaying the number of items in bottom bar
parent
80ccd45f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
Sources/VLCOneDriveTableViewController.m
Sources/VLCOneDriveTableViewController.m
+8
-0
No files found.
Sources/VLCOneDriveTableViewController.m
View file @
d4634a7e
...
...
@@ -94,6 +94,14 @@
{
[
self
.
tableView
reloadData
];
[
self
.
activityIndicator
stopAnimating
];
NSUInteger
count
=
self
.
controller
.
currentListFiles
.
count
;
if
(
count
==
0
)
self
.
numberOfFilesBarButtonItem
.
title
=
NSLocalizedString
(
@"NO_FILES"
,
nil
);
else
if
(
count
!=
1
)
self
.
numberOfFilesBarButtonItem
.
title
=
[
NSString
stringWithFormat
:
NSLocalizedString
(
@"NUM_OF_FILES"
,
nil
),
count
];
else
self
.
numberOfFilesBarButtonItem
.
title
=
NSLocalizedString
(
@"ONE_FILE"
,
nil
);
}
-
(
void
)
tableView
:(
UITableView
*
)
tableView
didSelectRowAtIndexPath
:(
NSIndexPath
*
)
indexPath
...
...
Pierre SAGASPE
@Pierre
mentioned in commit
d16f0013
·
Jun 13, 2016
mentioned in commit
d16f0013
mentioned in commit d16f001352cdcd8a5913e4cbf5e65b98825a83cc
Toggle commit list
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