From 6f8855ce3b83cc50583b62b4a1960c27fdf66bb3 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sun, 8 Apr 2018 16:36:46 +0300 Subject: QuoteView --- Juick/ViewControllers/NewPostViewController.m | 6 ++-- Juick/Views/MessageInputView.h | 13 -------- Juick/Views/MessageInputView.m | 18 ----------- Juick/Views/MessageInputView.xib | 44 --------------------------- Juick/Views/QuoteView.h | 13 ++++++++ Juick/Views/QuoteView.m | 18 +++++++++++ Juick/Views/QuoteView.xib | 44 +++++++++++++++++++++++++++ 7 files changed, 78 insertions(+), 78 deletions(-) delete mode 100644 Juick/Views/MessageInputView.h delete mode 100644 Juick/Views/MessageInputView.m delete mode 100644 Juick/Views/MessageInputView.xib create mode 100644 Juick/Views/QuoteView.h create mode 100644 Juick/Views/QuoteView.m create mode 100644 Juick/Views/QuoteView.xib (limited to 'Juick') diff --git a/Juick/ViewControllers/NewPostViewController.m b/Juick/ViewControllers/NewPostViewController.m index 81121ec..3e2d17e 100644 --- a/Juick/ViewControllers/NewPostViewController.m +++ b/Juick/ViewControllers/NewPostViewController.m @@ -9,7 +9,7 @@ #import "NewPostViewController.h" #import "MessagesViewController.h" #import "ColorScheme.h" -#import "MessageInputView.h" +#import "QuoteView.h" #import "APIClient.h" @interface NewPostViewController () @@ -29,7 +29,7 @@ self.paddingValue = self.bottomConstraint.constant; [self.view setBackgroundColor:[ColorScheme mainBackground]]; if (_replyTo != nil) { - MessageInputView *inputView = (MessageInputView *) self.inputAccessoryView; + QuoteView *inputView = (QuoteView *) self.inputAccessoryView; inputView.quoteText.text = _replyTo.text; self.title = [NSString stringWithFormat:@"Reply to %@", _replyTo.user.uname]; } else { @@ -73,7 +73,7 @@ - (UIView *) inputAccessoryView { if (!_inputAccessoryView) { - MessageInputView *inputView = (MessageInputView *)[[[NSBundle mainBundle] loadNibNamed:@"MessageInputView" owner:self options:nil] firstObject]; + QuoteView *inputView = (QuoteView *)[[[NSBundle mainBundle] loadNibNamed:@"QuoteView" owner:self options:nil] firstObject]; inputView.autoresizingMask = UIViewAutoresizingFlexibleHeight; inputView.quoteText.text = self.replyTo.text; _inputAccessoryView = inputView; diff --git a/Juick/Views/MessageInputView.h b/Juick/Views/MessageInputView.h deleted file mode 100644 index cfdcea6..0000000 --- a/Juick/Views/MessageInputView.h +++ /dev/null @@ -1,13 +0,0 @@ -// -// MessageInputView.h -// Juick -// -// Created by Vitaly Takmazov on 03/12/2017. -// Copyright © 2017 com.juick. All rights reserved. -// - -#import - -@interface MessageInputView : UIVisualEffectView -@property (weak, nonatomic) IBOutlet UILabel *quoteText; -@end diff --git a/Juick/Views/MessageInputView.m b/Juick/Views/MessageInputView.m deleted file mode 100644 index 24c8b41..0000000 --- a/Juick/Views/MessageInputView.m +++ /dev/null @@ -1,18 +0,0 @@ -// -// MessageInputView.m -// Juick -// -// Created by Vitaly Takmazov on 03/12/2017. -// Copyright © 2017 com.juick. All rights reserved. -// - -#import "MessageInputView.h" -#import "ColorScheme.h" -@implementation MessageInputView - --(void) awakeFromNib { - [super awakeFromNib]; - self.contentView.backgroundColor = [ColorScheme headerBackground]; -} - -@end diff --git a/Juick/Views/MessageInputView.xib b/Juick/Views/MessageInputView.xib deleted file mode 100644 index 0b2af25..0000000 --- a/Juick/Views/MessageInputView.xib +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Juick/Views/QuoteView.h b/Juick/Views/QuoteView.h new file mode 100644 index 0000000..affc7ee --- /dev/null +++ b/Juick/Views/QuoteView.h @@ -0,0 +1,13 @@ +// +// MessageInputView.h +// Juick +// +// Created by Vitaly Takmazov on 03/12/2017. +// Copyright © 2017 com.juick. All rights reserved. +// + +#import + +@interface QuoteView : UIVisualEffectView +@property (weak, nonatomic) IBOutlet UILabel *quoteText; +@end diff --git a/Juick/Views/QuoteView.m b/Juick/Views/QuoteView.m new file mode 100644 index 0000000..bb9cd75 --- /dev/null +++ b/Juick/Views/QuoteView.m @@ -0,0 +1,18 @@ +// +// MessageInputView.m +// Juick +// +// Created by Vitaly Takmazov on 03/12/2017. +// Copyright © 2017 com.juick. All rights reserved. +// + +#import "QuoteView.h" +#import "ColorScheme.h" +@implementation QuoteView + +-(void) awakeFromNib { + [super awakeFromNib]; + self.contentView.backgroundColor = [ColorScheme headerBackground]; +} + +@end diff --git a/Juick/Views/QuoteView.xib b/Juick/Views/QuoteView.xib new file mode 100644 index 0000000..96a03fe --- /dev/null +++ b/Juick/Views/QuoteView.xib @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3