|
@@ -53,7 +53,8 @@
|
|
|
|
|
|
for (tableAccount *account in accounts) {
|
|
|
|
|
|
- row = [XLFormRowDescriptor formRowDescriptorWithTag:account.account rowType:XLFormRowDescriptorTypeBooleanCheck title:account.account];
|
|
|
+ NSString *title = [NSString stringWithFormat:@"%@ %@", account.user, [NSURL URLWithString:account.urlBase].host];
|
|
|
+ row = [XLFormRowDescriptor formRowDescriptorWithTag:account.account rowType:XLFormRowDescriptorTypeBooleanCheck title:title];
|
|
|
// Avatar
|
|
|
NSString *fileNamePath = [NSString stringWithFormat:@"%@/%@-%@.png", [CCUtility getDirectoryUserData], [CCUtility getStringUser:account.user urlBase:account.urlBase], account.user];
|
|
|
UIImage *avatar = [UIImage imageWithContentsOfFile:fileNamePath];
|