To make it simple (my array may contain more than 2 strings)
myArray is:
(
"u011.08.20, 16:40:53 CEST00d 00h 00m 00su35",
"u011.08.20, 16:40:53 CEST00d 00h 00m 00su34"
)
Sorted array should be:
(
"u011.08.20, 16:40:53 CEST00d 00h 00m 00su34",
"u011.08.20, 16:40:53 CEST00d 00h 00m 00su35"
)
I looked at the NSArray doc. There are several proposals. Unfortunately, I don't know how to implement the declarations.
I am grateful for any help
myArray is:
(
"u011.08.20, 16:40:53 CEST00d 00h 00m 00su35",
"u011.08.20, 16:40:53 CEST00d 00h 00m 00su34"
)
Sorted array should be:
(
"u011.08.20, 16:40:53 CEST00d 00h 00m 00su34",
"u011.08.20, 16:40:53 CEST00d 00h 00m 00su35"
)
I looked at the NSArray doc. There are several proposals. Unfortunately, I don't know how to implement the declarations.
I am grateful for any help