iOS getPlatformString use SystemName

This commit is contained in:
Nathan Fulton 2017-04-29 23:38:49 -04:00
parent 8b1dda2115
commit bda2e4a4ab

View File

@ -148,7 +148,9 @@
}
- (NSString *)getPlatformString {
return [NSString stringWithFormat:@"iOS %@", [[UIDevice currentDevice] systemVersion]];
return [NSString stringWithFormat:@"%@ %@",
[[UIDevice currentDevice] systemName],
[[UIDevice currentDevice] systemVersion]];
}
@end