mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-29 10:05:49 +00:00
46 lines
978 B
Objective-C
46 lines
978 B
Objective-C
//
|
|
// DetailViewController.m
|
|
// Blog
|
|
//
|
|
// Created by Sami Samhuri on 2014-10-18.
|
|
// Copyright (c) 2014 Guru Logic Inc. All rights reserved.
|
|
//
|
|
|
|
#import "DetailViewController.h"
|
|
|
|
@interface DetailViewController ()
|
|
|
|
@end
|
|
|
|
@implementation DetailViewController
|
|
|
|
#pragma mark - Managing the detail item
|
|
|
|
- (void)setDetailItem:(id)newDetailItem {
|
|
if (_detailItem != newDetailItem) {
|
|
_detailItem = newDetailItem;
|
|
|
|
// Update the view.
|
|
[self configureView];
|
|
}
|
|
}
|
|
|
|
- (void)configureView {
|
|
// Update the user interface for the detail item.
|
|
if (self.detailItem) {
|
|
self.detailDescriptionLabel.text = [self.detailItem description];
|
|
}
|
|
}
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
// Do any additional setup after loading the view, typically from a nib.
|
|
[self configureView];
|
|
}
|
|
|
|
- (void)didReceiveMemoryWarning {
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
@end
|