linphone-iphone
linphone-iphone copied to clipboard
Annoying CUICatalog: Invalid asset name supplied: (null)
Since InAppSettingsKit code is directly imported inside the code base of the application, many useful improvements to the library are not automatically imported and solved. I found very annoying the titled warning in console so I've looked for a solution in the main repo and found this fix:
NSString *imageName = [_specifierDict objectForKey:kIASKCellImage];
if( imageName.length == 0 )
return nil;
return [UIImage imageNamed:imageName];
instead of your old code:
return [UIImage imageNamed:[_specifierDict objectForKey:kIASKCellImage]];
I have the fix code already working in my fork of the repository. Can I open a new pull request?