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 pathCircleLayout.cs
executable file
·79 lines (65 loc) · 2.27 KB
/
CircleLayout.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
using System;
using System.Collections.Generic;
using CoreGraphics;
using Foundation;
using CoreAnimation;
using UIKit;
namespace CircleLayout {
public class CircleLayout : UICollectionViewLayout {
const float ItemSize = 70.0f;
int cellCount = 20;
float radius;
CGPoint center;
public CircleLayout ()
{
}
public override void PrepareLayout ()
{
base.PrepareLayout ();
CGSize size = CollectionView.Frame.Size;
cellCount = (int) CollectionView.NumberOfItemsInSection (0);
center = new CGPoint (size.Width / 2.0f, size.Height / 2.0f);
radius = (int) Math.Min (size.Width, size.Height) / 2.5f;
}
public override CGSize CollectionViewContentSize {
get {
return CollectionView.Frame.Size;
}
}
public override UICollectionViewLayoutAttributes LayoutAttributesForItem (NSIndexPath path)
{
UICollectionViewLayoutAttributes attributes = UICollectionViewLayoutAttributes.CreateForCell (path);
attributes.Size = new CGSize (ItemSize, ItemSize);
attributes.Center = new CGPoint (center.X + radius * (float) Math.Cos (2 * path.Row * Math.PI / cellCount),
center.Y + radius * (float) Math.Sin (2 * path.Row * Math.PI / cellCount));
return attributes;
}
public override UICollectionViewLayoutAttributes [] LayoutAttributesForElementsInRect (CGRect rect)
{
var attributes = new UICollectionViewLayoutAttributes [cellCount];
for (int i = 0; i < cellCount; i++) {
NSIndexPath indexPath = NSIndexPath.FromItemSection (i, 0);
attributes [i] = LayoutAttributesForItem (indexPath);
}
return attributes;
}
#if false
// that's part of the original sample - but never called
public override UICollectionViewLayoutAttributes InitialLayoutAttributesForInsertedItem (NSIndexPath itemIndexPath)
{
var attributes = LayoutAttributesForItem (itemIndexPath);
attributes.Alpha = 0;
attributes.Center = new PointF (center.X, center.Y);
return attributes;
}
public override UICollectionViewLayoutAttributes FinalLayoutAttributesForDeletedItem (NSIndexPath itemIndexPath)
{
var attributes = LayoutAttributesForItem (itemIndexPath);
attributes.Alpha = 0;
attributes.Center = new PointF (center.X, center.Y);
attributes.Transform3D = CATransform3D.MakeScale (0.1f, 0.1f, 1);
return attributes;
}
#endif
}
}