在 JSQMessagesViewController 中显示 LocationMediaItem
Show LocationMediaItem in JSQMessagesViewController
我刚刚尝试使用 JSQMessagesViewController
在我的 Xamarin.iOS
应用程序中实现 LocationMediaItem
。一切正常,唯一的问题是应该显示位置的 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
中创建消息对象,因为每次重新加载 Collectionview 时都会调用此方法。您应该在接收消息或发送消息时处理消息创建并将其添加到消息集合中,然后在此方法中您只需 return 集合中的对象。
public override IMessageData GetMessageData (MessagesCollectionView collectionView, NSIndexPath indexPath)
{
return Messages [indexPath.Row];
}
我刚刚尝试使用 JSQMessagesViewController
在我的 Xamarin.iOS
应用程序中实现 LocationMediaItem
。一切正常,唯一的问题是应该显示位置的 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
中创建消息对象,因为每次重新加载 Collectionview 时都会调用此方法。您应该在接收消息或发送消息时处理消息创建并将其添加到消息集合中,然后在此方法中您只需 return 集合中的对象。
public override IMessageData GetMessageData (MessagesCollectionView collectionView, NSIndexPath indexPath)
{
return Messages [indexPath.Row];
}