This repository was archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathRootViewController.cs
182 lines (158 loc) · 6.53 KB
/
RootViewController.cs
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
//
// RootViewController.cs
//
// Author:
// Alan McGovern <alan@xamarin.com>
//
// Copyright 2011, Xamarin Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
using System;
using CoreGraphics;
using System.Linq;
using UIKit;
using Foundation;
using System.Collections.ObjectModel;
using System.Threading.Tasks;
using System.Net;
using System.Threading;
namespace LazyTableImages {
public partial class RootViewController : UITableViewController {
public ObservableCollection<App> Apps { get; private set; }
public RootViewController (string nibName, NSBundle bundle) : base (nibName, bundle)
{
Apps = new ObservableCollection<App> ();
Title = NSBundle.MainBundle.LocalizedString ("Top 50 Apps", "Master");
}
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
TableView.Source = new DataSource (this);
}
public override bool ShouldAutorotateToInterfaceOrientation (UIInterfaceOrientation toInterfaceOrientation)
{
return (toInterfaceOrientation != UIInterfaceOrientation.PortraitUpsideDown);
}
public override void DidReceiveMemoryWarning ()
{
// Release all cached images. This will cause them to be redownloaded
// later as they're displayed.
foreach (var v in Apps)
v.Image = null;
}
class DataSource : UITableViewSource {
RootViewController Controller { get; set; }
Task DownloadTask { get; set; }
UIImage PlaceholderImage { get; set; }
public DataSource (RootViewController controller)
{
Controller = controller;
// Listen for changes to the Apps collection so the TableView can be updated
Controller.Apps.CollectionChanged += HandleAppsCollectionChanged;
// Initialise DownloadTask with an empty and complete task
DownloadTask = Task.Factory.StartNew (() => { });
// Load the Placeholder image so it's ready to be used immediately
PlaceholderImage = UIImage.FromFile ("Images/Placeholder.png");
// If either a download fails or the image we download is corrupt, ignore the problem.
TaskScheduler.UnobservedTaskException += delegate (object sender, UnobservedTaskExceptionEventArgs e)
{
e.SetObserved ();
};
}
void HandleAppsCollectionChanged (object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{
// Whenever the Items change, reload the data.
Controller.TableView.ReloadData ();
}
public override nint NumberOfSections (UITableView tableView)
{
return 1;
}
public override nint RowsInSection (UITableView tableview, nint section)
{
return Controller.Apps.Count;
}
// Customize the appearance of table view cells.
public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
{
UITableViewCell cell;
// If the list is empty, put in a 'loading' entry
if (Controller.Apps.Count == 0 && indexPath.Row == 0) {
cell = tableView.DequeueReusableCell ("Placeholder");
if (cell == null) {
cell = new UITableViewCell (UITableViewCellStyle.Subtitle, "Placeholder");
cell.DetailTextLabel.TextAlignment = UITextAlignment.Center;
cell.SelectionStyle = UITableViewCellSelectionStyle.None;
cell.DetailTextLabel.Text = "Loading";
}
return cell;
}
cell = tableView.DequeueReusableCell ("Cell");
if (cell == null) {
cell = new UITableViewCell (UITableViewCellStyle.Subtitle, "Cell");
cell.SelectionStyle = UITableViewCellSelectionStyle.None;
}
// Set the tag of each cell to the index of the App that
// it's displaying. This allows us to directly match a cell
// with an item when we're updating the Image
var app = Controller.Apps [indexPath.Row];
cell.Tag = indexPath.Row;
cell.TextLabel.Text = app.Name;
cell.DetailTextLabel.Text = app.Artist;
// If the Image for this App has not been downloaded,
// use the Placeholder image while we try to download
// the real image from the web.
if (app.Image == null) {
app.Image = PlaceholderImage;
BeginDownloadingImage (app, indexPath);
}
cell.ImageView.Image = app.Image;
return cell;
}
void BeginDownloadingImage (App app, NSIndexPath path)
{
// Queue the image to be downloaded. This task will execute
// as soon as the existing ones have finished.
byte [] data = null;
DownloadTask = DownloadTask.ContinueWith (prevTask => {
try {
UIApplication.SharedApplication.NetworkActivityIndicatorVisible = true;
using (var c = new GzipWebClient ())
data = c.DownloadData (app.ImageUrl);
} finally {
UIApplication.SharedApplication.NetworkActivityIndicatorVisible = false;
}
});
// When the download task is finished, queue another task to update the UI.
// Note that this task will run only if the download is successful and it
// uses the CurrentSyncronisationContext, which on MonoTouch causes the task
// to be run on the main UI thread. This allows us to safely access the UI.
DownloadTask = DownloadTask.ContinueWith (t => {
// Load the image from the byte array.
app.Image = UIImage.LoadFromData (NSData.FromArray (data));
// Retrieve the cell which corresponds to the current App. If the cell is null, it means the user
// has already scrolled that app off-screen.
var cell = Controller.TableView.VisibleCells.Where (c => c.Tag == Controller.Apps.IndexOf (app)).FirstOrDefault ();
if (cell != null)
cell.ImageView.Image = app.Image;
}, CancellationToken.None, TaskContinuationOptions.OnlyOnRanToCompletion, TaskScheduler.FromCurrentSynchronizationContext ());
}
}
}
}