mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
- new dark look that matches samhuri.net - improved cell layout for article list - fix yap caching - update service layer to match new API - implement authentication - fix bugs all over - add a preview
21 lines
No EOL
441 B
Objective-C
21 lines
No EOL
441 B
Objective-C
//
|
|
// Created by Sami Samhuri on 15-04-19.
|
|
// Copyright (c) 2015 Guru Logic Inc. All rights reserved.
|
|
//
|
|
#import "PostCell.h"
|
|
|
|
@interface PostCell ()
|
|
|
|
@property (nonatomic, weak) IBOutlet UILabel *titleLabel;
|
|
@property (nonatomic, weak) IBOutlet UILabel *dateLabel;
|
|
|
|
@end
|
|
|
|
@implementation PostCell
|
|
|
|
- (void)configureWithTitle:(NSString *)title date:(NSString *)date {
|
|
self.titleLabel.text = title;
|
|
self.dateLabel.text = date;
|
|
}
|
|
|
|
@end |