Procházet zdrojové kódy

Version 1.0.1

Fixed a small bug that made a zero padding when using 12h time format. (09:41 AM instead of 9:41 AM).
beta-future-time
Gil Shahar před 7 roky
rodič
revize
d215807af8
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      Tweak.xm

+ 2
- 2
Tweak.xm Zobrazit soubor

@@ -21,7 +21,7 @@ static bool is24h;
{
[dateFormatter setDateFormat:@"HH:mm"];
}else{
[dateFormatter setDateFormat:@"hh:mm a"];
[dateFormatter setDateFormat:@"h:mm a"];
}
dateLabel.text = [dateFormatter stringFromDate:date];
[dateLabel sizeToFit];
@@ -44,4 +44,4 @@ static bool is24h;
NSRange pmRange = [dateString rangeOfString:[formatter PMSymbol]];
is24h = (amRange.location == NSNotFound && pmRange.location == NSNotFound);
[formatter release];
}
}

Načítá se…
Zrušit
Uložit