mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 14:20:20 +00:00
21 lines
570 B
Objective-C
21 lines
570 B
Objective-C
//
|
|
// UserProfileViewController.h
|
|
// Flickrgram
|
|
//
|
|
// Created by Hannah Troisi on 2/24/16.
|
|
// Copyright © 2016 Hannah Troisi. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "UserModel.h"
|
|
|
|
@interface UserProfileViewController : UIViewController
|
|
|
|
//- (instancetype)initWithMe NS_DESIGNATED_INITIALIZER;
|
|
- (instancetype)initWithUser:(UserModel *)user NS_DESIGNATED_INITIALIZER;
|
|
- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil NS_UNAVAILABLE;
|
|
- (instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE;
|
|
|
|
|
|
@end
|