Subversion Repository Public Repository

Nextrek

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
//
//  PoiListVC.m
//  SafariArte
//
//  Created by Pier Domenico Bonamassa on 31/07/15.
//  Copyright (c) 2015 Nextrek. All rights reserved.
//

#import "PoiListVC.h"
#import "PoiListCollectionViewCell.h"
#import "RoutesVC.h"
#import "NXTParser.h"

@interface PoiListVC ()  <UICollectionViewDelegateFlowLayout,UICollectionViewDataSource, UICollectionViewDelegate>



@end

@implementation PoiListVC

- (void)viewDidLoad
{
    [super viewDidLoad];
    [self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"Cell"];
    
    NSLog(@"stamapapapap");
    

    self.title = NSLocalizedString(@"ListPoi", nil);
    
    self.collectionView.delegate = self;
    
    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"iconLogo"]]];

    self.navigationItem.backBarButtonItem.title = @"";

}

- (NSInteger)numberOfSectionsInCollectionView: (UICollectionView *)collectionView {
    return 1;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return 15;
}




// The cell that is returned must be retrieved from a call to -dequeueReusableCellWithReuseIdentifier:forIndexPath:
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    PoiListCollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];
    cell.imagePoi = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"male_user"]];
    cell.backgroundColor = [UIColor whiteColor];
   
    return cell;
}

#pragma mark – UICollectionViewDelegateFlowLayout
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
    return CGSizeMake(70, 70);
}


- (UIEdgeInsets)collectionView:
(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {
    return UIEdgeInsetsMake(50, 20, 50, 20);
}



- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

@end

Commits for Nextrek/iOS/SafariArte/trunk/SafariArte/Controllers/PoiListVC.m

Diff revisions: vs.
Revision Author Commited Message
460 Diff Diff PBonamassa picture PBonamassa Mon 03 Aug, 2015 08:44:33 +0000

PoiListVC

459 PBonamassa picture PBonamassa Mon 03 Aug, 2015 07:30:47 +0000

added PoiListVC