mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-19 16:13:42 +02:00
Add RequestContactsAccessFooterView.
Update InviteFriendsHeaderView and StartChatViewController styles to match Figma doc.
This commit is contained in:
@@ -466,8 +466,8 @@
|
||||
searchInputSection = count++;
|
||||
}
|
||||
|
||||
// Keep visible the header for the both contact sections, even if their are empty.
|
||||
if (BuildSettings.allowLocalContactsAccess)
|
||||
// Keep visible the header for the both contact sections, even if they're are empty.
|
||||
if (BuildSettings.allowLocalContactsAccess && [CNContactStore authorizationStatusForEntityType:CNEntityTypeContacts] == CNAuthorizationStatusAuthorized)
|
||||
{
|
||||
filteredLocalContactsSection = count++;
|
||||
}
|
||||
@@ -482,7 +482,7 @@
|
||||
}
|
||||
|
||||
// Keep visible the local contact header, even if the section is empty.
|
||||
if (BuildSettings.allowLocalContactsAccess)
|
||||
if (BuildSettings.allowLocalContactsAccess && [CNContactStore authorizationStatusForEntityType:CNEntityTypeContacts] == CNAuthorizationStatusAuthorized)
|
||||
{
|
||||
filteredLocalContactsSection = count++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user