[ios] Added Mastodon & Bluesky

This commit is contained in:
Yannik Bloscheck
2025-06-19 16:34:48 +02:00
committed by Yannik Bloscheck
parent fe92bf2359
commit e500a9e5fa
63 changed files with 554 additions and 1 deletions

View File

@@ -669,7 +669,15 @@ void registerCellsForTableView(std::vector<MWMEditorCellID> const & cells, UITab
text:L(@"outdoor_seating")
value:feature::YesNoUnknownFromString(m_mapObject.GetMetadata(feature::Metadata::FMD_OUTDOOR_SEATING))];
break;
}
}
case MetadataID::FMD_CONTACT_FEDIVERSE:
{
[self configTextViewCell:cell
cellID:cellID
icon:@"ic_placepage_fediverse"
placeholder:L(@"fediverse")];
break;
}
case MetadataID::FMD_CONTACT_FACEBOOK:
{
[self configTextViewCell:cell
@@ -710,6 +718,14 @@ void registerCellsForTableView(std::vector<MWMEditorCellID> const & cells, UITab
placeholder:L(@"line")];
break;
}
case MetadataID::FMD_CONTACT_BLUESKY:
{
[self configTextViewCell:cell
cellID:cellID
icon:@"ic_placepage_bluesky"
placeholder:L(@"bluesky")];
break;
}
case MWMEditorCellTypeNote:
{
MWMNoteCell * tCell = static_cast<MWMNoteCell *>(cell);