- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
CGFloat ageInYears = self.user.age;
if (ageInYears < 1) {
CGFloat ageInSeconds = [[NSDate date] timeIntervalSinceDate:self.user.birthday];
ageInYears = floorf(ageInSeconds / (365.25 * 24.0 * 60.0 * 60.0));
}
// ...
profileInfoCell.schoolLabel.text = [NSString stringWithFormat:@"%.0f", ageInYears];
gost 30.07.2014 18:13 # +1
Аптимизацыя?
kegdan 30.07.2014 19:00 # +3
Abbath 31.07.2014 01:06 # 0
myaut 31.07.2014 01:09 # −3
bormand 31.07.2014 06:58 # +3
cffag 10.08.2014 11:43 # 0
bormand 10.08.2014 14:23 # 0
kegdan 10.08.2014 16:28 # +1
cffag 10.08.2014 21:21 # 0
typedef float CGFloat; // 32-bit
typedef double CGFloat; // 64-bit
>These types were introduced to make it easier to write code that works on both 32-bit and 64-bit without modification.
bormand 11.08.2014 05:13 # 0
cffag 11.08.2014 10:10 # 0
>Floating point quantities in the Core Graphics framework (Quartz), which are float on 32-bit architectures, are being expanded to double to provide a wider range and accuracy for graphical quantities. Core Graphics declares a new type for floating-point quantities, CGFloat, and declares it conditionally for both 32-bit and 64-bit. This change affects Cocoa because of its close dependency on Core Graphics. Where a parameter or return value in the Cocoa frameworks is a graphical quantity, CGFloat now replaces float
defecate-plusplus 11.08.2014 10:51 # 0
bormand 11.08.2014 11:47 # +1
wvxvw 12.08.2014 16:36 # 0
Например, это известная жизненная мудрость, что для того, чтобы отрендерить красиво анимацию изменения ширины прямоугольника, лучше самому рассчитать изменения ширины и отрисовать его вместо того, чтобы использовать примитивы прямоугольника и изменять им ширину. Во втором случае изменения будут скачками разной высоты.
raMagPuJI 04.10.2019 02:10 # 0
volter9 16.09.2014 03:46 # 0
Школоло что ли?