mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
reload contactsListTableView when presence updated to have an up to date list
This commit is contained in:
parent
f27f1de1ee
commit
bcd3d463cd
4 changed files with 13 additions and 5 deletions
|
|
@ -18,9 +18,10 @@
|
|||
*/
|
||||
|
||||
#import "UIContactCell.h"
|
||||
#import "Utils.h"
|
||||
#import "ContactsListTableView.h"
|
||||
#import "FastAddressBook.h"
|
||||
#import "UILabel+Boldify.h"
|
||||
#import "Utils.h"
|
||||
|
||||
@implementation UIContactCell
|
||||
|
||||
|
|
@ -67,7 +68,14 @@
|
|||
return;
|
||||
}
|
||||
}
|
||||
[self setContact:_contact];
|
||||
id view = [self superview];
|
||||
|
||||
while (view && [view isKindOfClass:[UITableView class]] == NO) {
|
||||
view = [view superview];
|
||||
}
|
||||
|
||||
UITableView *tableView = (UITableView *)view;
|
||||
[(ContactsListTableView *)tableView.dataSource loadData];
|
||||
}
|
||||
|
||||
#pragma mark - Property Functions
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
</section>
|
||||
|
||||
<section name="sip">
|
||||
<entry name="rls_uri" overwrite="true">sip:rls@sip.linphone.org</entry>
|
||||
<entry name="rls_uri" overwrite="true">sips:rls@sip.linphone.org</entry>
|
||||
</section>
|
||||
|
||||
<section name="assistant">
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
</section>
|
||||
|
||||
<section name="sip">
|
||||
<entry name="rls_uri" overwrite="true">sip:rls@sip.linphone.org</entry>
|
||||
<entry name="rls_uri" overwrite="true">sips:rls@sip.linphone.org</entry>
|
||||
</section>
|
||||
|
||||
<section name="assistant">
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<string>5</string>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
<true/>
|
||||
<key>ITSEncryptionExportComplianceCode</key>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue