1
Page 1 of 1 UnfriendView.h 4/2/15, 9:08 PM // // UnfriendView.h // Friend-Duster // // Created by Bryan Crampton on 3/26/15. // Copyright (c) 2015 Orange Slide Apps, Inc. All rights reserved. // #import <SDWebImage/UIImageView+WebCache.h> @interface UnfriendView : UIView { UIImageView *profilePicImageView; UILabel *nameLabel; UIButton *unfriendButton; UIButton *unfollowButton; UIButton *keepButton; } @property(nonatomic, weak)Friend *friend; #pragma mark - Instance Methods - (void)setProfilePicURL:(NSURL *)profilePicURL; - (void)setName:(NSString *)name; @end

UnfriendView.h

Embed Size (px)

DESCRIPTION

Objective-C UnfriendView header file

Citation preview

  • Page 1 of 1

    UnfriendView.h 4/2/15, 9:08 PM

    //// UnfriendView.h// Friend-Duster//// Created by Bryan Crampton on 3/26/15.// Copyright (c) 2015 Orange Slide Apps, Inc. All rights reserved.//#import

    @interface UnfriendView : UIView { UIImageView *profilePicImageView; UILabel *nameLabel; UIButton *unfriendButton; UIButton *unfollowButton; UIButton *keepButton;}

    @property(nonatomic, weak)Friend *friend;

    #pragma mark - Instance Methods- (void)setProfilePicURL:(NSURL *)profilePicURL;- (void)setName:(NSString *)name;

    @end