Show the hosts in alphabetical order rather than in an undefined order

This commit is contained in:
Cameron Gutman
2015-11-13 19:55:18 -08:00
parent a8bcc6afba
commit 5daa82b0ba
3 changed files with 9 additions and 1 deletions
+2
View File
@@ -18,6 +18,8 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic) PairState pairState;
@property (nonatomic) NSString * activeAddress;
- (NSComparisonResult)compareName:(Host *)other;
@end
NS_ASSUME_NONNULL_END
+4
View File
@@ -14,4 +14,8 @@
@synthesize online;
@synthesize activeAddress;
- (NSComparisonResult)compareName:(Host *)other {
return [self.name caseInsensitiveCompare:other.name];
}
@end