forked from organicmaps/organicmaps
[iOS] Fixed crash when deleting bookmark from edit view.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
2fe272a2e6
commit
e1b8aef1d4
4 changed files with 12 additions and 6 deletions
|
@ -38,6 +38,7 @@ NS_SWIFT_NAME(FrameworkHelper)
|
|||
+ (void)showBookmark:(MWMMarkID)bookmarkId;
|
||||
+ (void)showTrack:(MWMTrackID)trackId;
|
||||
+ (void)updatePlacePageData;
|
||||
+ (void)updateAfterDeleteBookmark;
|
||||
|
||||
@end
|
||||
|
||||
|
|
|
@ -164,4 +164,12 @@
|
|||
GetFramework().UpdatePlacePageInfoForCurrentSelection();
|
||||
}
|
||||
|
||||
+ (void)updateAfterDeleteBookmark {
|
||||
auto & frm = GetFramework();
|
||||
auto buildInfo = frm.GetCurrentPlacePageInfo().GetBuildInfo();
|
||||
buildInfo.m_match = place_page::BuildInfo::Match::FeatureOnly;
|
||||
buildInfo.m_userMarkId = kml::kInvalidMarkId;
|
||||
buildInfo.m_source = place_page::BuildInfo::Source::Other;
|
||||
frm.UpdatePlacePageInfoForCurrentSelection(buildInfo);
|
||||
}
|
||||
@end
|
||||
|
|
|
@ -197,7 +197,7 @@ extension EditBookmarkViewController: MWMButtonCellDelegate {
|
|||
func cellDidPressButton(_ cell: UITableViewCell) {
|
||||
BookmarksManager.shared().deleteBookmark(bookmarkId)
|
||||
if let placePageData = placePageData {
|
||||
FrameworkHelper.updatePlacePageData()
|
||||
FrameworkHelper.updateAfterDeleteBookmark()
|
||||
placePageData.updateBookmarkStatus()
|
||||
}
|
||||
goBack()
|
||||
|
|
|
@ -187,11 +187,8 @@ using namespace storage;
|
|||
auto &f = GetFramework();
|
||||
f.GetBookmarkManager().GetEditSession().DeleteBookmark(data.bookmarkData.bookmarkId);
|
||||
|
||||
auto buildInfo = f.GetCurrentPlacePageInfo().GetBuildInfo();
|
||||
buildInfo.m_match = place_page::BuildInfo::Match::FeatureOnly;
|
||||
buildInfo.m_userMarkId = kml::kInvalidMarkId;
|
||||
buildInfo.m_source = place_page::BuildInfo::Source::Other;
|
||||
f.UpdatePlacePageInfoForCurrentSelection(buildInfo);
|
||||
[MWMFrameworkHelper updateAfterDeleteBookmark];
|
||||
|
||||
[data updateBookmarkStatus];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue