Skip to content

Instantly share code, notes, and snippets.

@vincentlg
Created May 27, 2011 09:27
Show Gist options
  • Save vincentlg/994929 to your computer and use it in GitHub Desktop.
Save vincentlg/994929 to your computer and use it in GitHub Desktop.
Implémentation du modèle
//
// ClockModel.m
// Clock
//
// Created by Vincent Le Gallic on 27/05/11.
// Copyright 2011 Frianbiz. All rights reserved.
//
#import "ClockModel.h"
@implementation ClockModel
@synthesize hour, minute, second;
- (void) dealloc
{
self.second =nil;
self.minute = nil;
self.hour = nil;
[super dealloc];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment