| 123456789101112131415161718192021222324 |
- //
- // PDFListTableViewCell.m
- // RedAnt ERP Mobile
- //
- // Created by Ray on 11/23/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import "PortfolioListTableViewCell.h"
- @implementation PortfolioListTableViewCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|