| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using System;
- using Foundation;
- using UIKit;
- using ImageSearch.ViewModel;
- using SDWebImage;
- namespace ImageSearch.iOS
- {
- public partial class ViewController : UIViewController, IUICollectionViewDataSource
- {
- ImageSearchViewModel viewModel;
- public ViewController (IntPtr handle) : base (handle)
- {
- }
- public override void ViewDidLoad ()
- {
- base.ViewDidLoad ();
- viewModel = new ImageSearchViewModel();
- CollectionViewImages.WeakDataSource = this;
- //Button Click event to get images
- ButtonSearch.TouchUpInside += async (sender, args) =>
- {
- ButtonSearch.Enabled = false;
- ActivityIsLoading.StartAnimating();
- await viewModel.SearchForImagesAsync(TextFieldQuery.Text);
- CollectionViewImages.ReloadData();
- ButtonSearch.Enabled = true;
- ActivityIsLoading.StopAnimating();
- };
- }
- public override void DidReceiveMemoryWarning ()
- {
- base.DidReceiveMemoryWarning ();
- // Release any cached data, images, etc that aren't in use.
- }
- public nint GetItemsCount(UICollectionView collectionView, nint section) =>
- viewModel.Images.Count;
- public UICollectionViewCell GetCell(UICollectionView collectionView, NSIndexPath indexPath)
- {
- var cell = collectionView.DequeueReusableCell("imagecell", indexPath) as ImageCell;
- var item = viewModel.Images[indexPath.Row];
- cell.Caption.Text = item.Title;
- cell.Image.SetImage(new NSUrl(item.ThumbnailLink));
- return cell;
- }
- }
- }
|