mirror of
https://github.com/wu736139669/Ash_AWord.git
synced 2026-08-05 05:55:19 +00:00
20 lines
620 B
Objective-C
20 lines
620 B
Objective-C
//
|
|
// NotePublishViewController.h
|
|
// Ash_AWord
|
|
//
|
|
// Created by xmfish on 15/4/1.
|
|
// Copyright (c) 2015年 ash. All rights reserved.
|
|
//
|
|
|
|
#import "ViewController.h"
|
|
#import "UIPlaceHolderTextView.h"
|
|
@interface NotePublishViewController : ViewController
|
|
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *contentHeight;
|
|
@property (weak, nonatomic) IBOutlet UIPlaceHolderTextView *contentTextView;
|
|
- (IBAction)imageBtnClick:(id)sender;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imageView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *lengthLabel;
|
|
@property (nonatomic,strong)UIImage* publishImage;
|
|
@end
|