mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-30 10:15:49 +00:00
17 lines
348 B
Objective-C
17 lines
348 B
Objective-C
//
|
|
// DetailViewController.h
|
|
// Blog
|
|
//
|
|
// Created by Sami Samhuri on 2014-10-18.
|
|
// Copyright (c) 2014 Guru Logic Inc. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface DetailViewController : UIViewController
|
|
|
|
@property (strong, nonatomic) id detailItem;
|
|
@property (weak, nonatomic) IBOutlet UILabel *detailDescriptionLabel;
|
|
|
|
@end
|
|
|