Skip to content

Instantly share code, notes, and snippets.

@FabiolaRamirez
Created August 30, 2014 02:23
Show Gist options
  • Save FabiolaRamirez/8419ea65e1d32f8e22fa to your computer and use it in GitHub Desktop.
Save FabiolaRamirez/8419ea65e1d32f8e22fa to your computer and use it in GitHub Desktop.
//
// InformacionCell.m
// Proyecto2
//
// Created by Fabiola Ramirez on 10/08/14.
// Copyright (c) 2014 Fabiola Ramirez. All rights reserved.
//
#import "InformacionCell.h"
@implementation InformacionCell
- (IBAction)informacionBoton:(id)sender {
}
+ (InformacionCell*) informacionCell
{
InformacionCell *cell = [[[NSBundle mainBundle] loadNibNamed:@"InformacionCell" owner:self options:nil] objectAtIndex:0];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
return cell;
}
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
}
return self;
}
- (void)awakeFromNib
{
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment