ricardobed / iOS-TempConverter

Simple Temperature Conversion
0 stars 0 forks source link

App ready for review #1

Open ricardobed opened 11 years ago

ricardobed commented 11 years ago

My app is ready, can you please review it?

cc @nesquena @timothy1ee

Thanks, Ricardo

timothy1ee commented 11 years ago

Very good, nice work. Nice semantic naming of variables and methods in the iOS style. Some feedback

@property (nonatomic, assign) float celsius;
@property (nonatomic, assign) float fahrenheit;
//
//  TempViewController.m
//  TempConverter
//
//  Created by Ricardo Bedoya on 7/24/13.
//  Copyright (c) 2013 Ricardo Bedoya. All rights reserved.
//

#import "TempViewController.h"

@interface TempViewController ()

- (void)onDoneButton;

@property (nonatomic, assign) float celsius;
@property (nonatomic, assign) float fahrenheit;

@end
ricardobed commented 11 years ago

Thanks!