mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-01 05:36:57 +02:00
Search Screen: add People tab
- add contact picker view controller
This commit is contained in:
@@ -73,6 +73,29 @@
|
||||
_selectedIndex = index;
|
||||
}
|
||||
|
||||
- (void)destroy
|
||||
{
|
||||
for (id viewController in viewControllers)
|
||||
{
|
||||
if ([viewController respondsToSelector:@selector(destroy)])
|
||||
{
|
||||
[viewController destroy];
|
||||
}
|
||||
}
|
||||
viewControllers = nil;
|
||||
sectionTitles = nil;
|
||||
|
||||
sectionLabels = nil;
|
||||
|
||||
if (selectedMarkerView)
|
||||
{
|
||||
[selectedMarkerView removeFromSuperview];
|
||||
selectedMarkerView = nil;
|
||||
}
|
||||
|
||||
[super destroy];
|
||||
}
|
||||
|
||||
- (void)setSelectedIndex:(NSUInteger)selectedIndex
|
||||
{
|
||||
if (_selectedIndex != selectedIndex)
|
||||
|
||||
Reference in New Issue
Block a user