ios - Pinterest 风格布局 iOS Storyboard
<p><p>我想创建一个这样的设计:-</p>
<p> <a href="/image/xhiAb.png" rel="noreferrer noopener nofollow"><img src="/image/xhiAb.png" alt="enter image description here"/></a> </p>
<p>我正在使用 Storyboard ,但我无法让这件事发挥作用。到目前为止,我有一个简单的 Collection View ,它工作正常,除了所有单元格显示两次。有没有办法通过不使用任何库并为单元格设置随机高度来实现这一点?</p>
<p>这是我的 Storyboard:-</p>
<p> <a href="/image/uR65v.png" rel="noreferrer noopener nofollow"><img src="/image/uR65v.png" alt="enter image description here"/></a> </p>
<hr/>
<p><strong>我的收藏 Controller </strong></p>
<pre><code>public MyCollectionController(IntPtr handle) : base(handle)
{
}
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
data = MakeDataForRecyclerView(pageIndex);
}
public override nint NumberOfSections (UICollectionView collectionView)
{
return 1;
}
public override nint GetItemsCount(UICollectionView collectionView, nint section)
{
return data.Length;
}
public override void ItemSelected (UICollectionView collectionView, NSIndexPath indexPath)
{
var message = string.Format ("You clicked on {0}!", cell.Title);
new UIAlertView ("Clicked", message, null, "Okay", null).Show ();
}
public override UICollectionViewCell GetCell (UICollectionView collectionView, NSIndexPath indexPath)
{
cell = (MyCollectionCell) collectionView.DequeueReusableCell ("My_Collection_Cell", indexPath);
var tag = data;
cell.PopulateData (tag.Title, tag.ThumbnailPath);
return cell;
}
public override void ItemHighlighted(UICollectionView collectionView, NSIndexPath indexPath)
{
var cell = collectionView.CellForItem(indexPath);
cell.ContentView.BackgroundColor = UIColor.Yellow;
}
public override void ItemUnhighlighted(UICollectionView collectionView, NSIndexPath indexPath)
{
var cell = collectionView.CellForItem(indexPath);
cell.ContentView.BackgroundColor = UIColor.White;
}
public override bool ShouldHighlightItem(UICollectionView collectionView, NSIndexPath indexPath)
{
return true;
}
private Models.DummyModel[] MakeDataForRecyclerView(int startPosition)
{
List<Models.DummyModel> listOf4Item = new List<Models.DummyModel>();
for (int i = startPosition * 4; i < Math.Min((4 * startPosition) + 4, AppDelegate.myList.Count); i++)
{
listOf4Item.Add(AppDelegate.myList.ElementAt(i));
}
return listOf4Item.ToArray();
}
</code></pre>
<hr/>
<p><strong>我的CollectionCell</strong></p>
<pre><code>public MyCollectionCell (IntPtr handle) : base (handle)
{
}
public void PopulateData(string title, string placeholderURL)
{
//lblTitle.Text = title;
placeholderImg.SetImage(url: new NSUrl(placeholderURL),
placeholder: UIImage.FromFile("ic_apptitle.png"));
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你的问题在这里:</p>
<pre><code>public override nint NumberOfSections (UICollectionView collectionView)
{
return 2; // should be 1 not 2
}
</code></pre>
<p>要为您的单元格设置不同的大小,您可以添加此方法:</p>
<pre><code>public override SizeF GetSizeForItem (UICollectionView collectionView, UICollectionViewLayout layout, NSIndexPath indexPath)
{
// return the size you want for the cell at this indexPath
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - Pinterest 风格布局 iOSStoryboard,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/35033430/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/35033430/
</a>
</p>
页:
[1]