我刚刚尝试使用LocationMediaItem
在我的Xamarin.iOS
应用程序中实现JSQMessagesViewController
。一切工作都很好,唯一的问题是应该显示位置的UICollectionView
单元永远被卡住,并且永远不会真正显示地图。
这是一些我如何在C#中制作locationMediaItem
的代码:
var locationMediaItem = new LocationMediaItem(new CLLocation(latitude, longitude));
if (ChatDB.Messages[indexPath.Row].user_id == SenderId)
{
locationMediaItem.AppliesMediaViewMaskAsOutgoing = true;
return JSQMessagesViewController.Message.Create(ChatDB.Messages[indexPath.Row].user_id, User.Instance.name, locationMediaItem);
}
这是我的意思的图片:
因此
JSQMessagesViewController
知道我希望它显示地图视图,但是它永远不会停止加载,而且我不知道为什么。希望有人能帮忙。
最佳答案
与您遇到了同样的问题,并使其能够正常工作。
诀窍是不直接在LocationMediaItem构造函数上设置位置,将其保留为空,然后使用SetLocation方法接收位置和句柄作为参数。
var itemLoationItem = new LocationMediaItem ();
itemLoationItem.AppliesMediaViewMaskAsOutgoing = true;
Messages.Add (Message.Create (SenderId, SenderDisplayName, itemLoationItem));
itemLoationItem.SetLocation (new CLLocation (lat, long), HandleLocationMediaItemCompletionBlock);
在句柄中只是重新加载数据
void HandleLocationMediaItemCompletionBlock ()
{
this.CollectionView.ReloadData ();
}
注意:避免在
GetMessageData
中创建Message对象,因为每次重新加载Collectionview时都会调用此方法。您应该在接收消息或发送消息时处理消息创建,并将其添加到消息集合中,然后在此方法中,您只需从集合中返回对象即可。public override IMessageData GetMessageData (MessagesCollectionView collectionView, NSIndexPath indexPath)
{
return Messages [indexPath.Row];
}
关于c# - 在JSQMessagesViewController中显示LocationMediaItem,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42314143/