Skip to content

Instantly share code, notes, and snippets.

@FabiolaRamirez
Created August 30, 2014 01:46
Show Gist options
  • Save FabiolaRamirez/755e58d8e9eee7d2bf27 to your computer and use it in GitHub Desktop.
Save FabiolaRamirez/755e58d8e9eee7d2bf27 to your computer and use it in GitHub Desktop.
//
// OneInformationTableViewCell.m
// Proyecto2
//
// Created by Fabiola Ramirez on 29/08/14.
// Copyright (c) 2014 Fabiola Ramirez. All rights reserved.
//
#import "OneInformationTableViewCell.h"
@implementation OneInformationTableViewCell
@synthesize title;
+ (OneInformationTableViewCell*) oneInformationTableViewCell
{
OneInformationTableViewCell *cell = [[[NSBundle mainBundle] loadNibNamed:@"OneInformationTableViewCell" 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