clean up long text VC

pull/1/head
Michael Kirk 7 years ago
parent c8c2b8c640
commit 5148747c12

@ -21,6 +21,8 @@ typedef NS_ENUM(NSUInteger, OWSMessageGestureLocation) {
OWSMessageGestureLocation_QuotedReply,
};
extern const UIDataDetectorTypes OWSAllowedDataDetectorTypes;
@protocol OWSMessageBubbleViewDelegate
- (void)didTapImageViewItem:(ConversationViewItem *)viewItem

@ -21,6 +21,9 @@
NS_ASSUME_NONNULL_BEGIN
const UIDataDetectorTypes OWSAllowedDataDetectorTypes
= UIDataDetectorTypeLink | UIDataDetectorTypeAddress | UIDataDetectorTypeCalendarEvent;
@interface OWSMessageBubbleView () <OWSQuotedMessageViewDelegate, OWSContactShareButtonsViewDelegate>
@property (nonatomic) OWSBubbleView *bubbleView;
@ -94,8 +97,7 @@ NS_ASSUME_NONNULL_BEGIN
self.bodyTextView = [self newTextView];
// Setting dataDetectorTypes is expensive. Do it just once.
self.bodyTextView.dataDetectorTypes
= (UIDataDetectorTypeLink | UIDataDetectorTypeAddress | UIDataDetectorTypeCalendarEvent);
self.bodyTextView.dataDetectorTypes = OWSAllowedDataDetectorTypes;
self.bodyTextView.hidden = YES;
self.footerView = [OWSMessageFooterView new];

@ -15,7 +15,7 @@ public class LongTextViewController: OWSViewController {
let messageBody: String
var messageTextView: UITextView?
var messageTextView: UITextView!
// MARK: Initializers
@ -53,6 +53,8 @@ public class LongTextViewController: OWSViewController {
comment: "Title for the 'long text message' view.")
createViews()
self.messageTextView.contentOffset = CGPoint(x: 0, y: self.messageTextView.contentInset.top)
}
// MARK: - Create Views
@ -72,17 +74,17 @@ public class LongTextViewController: OWSViewController {
messageTextView.showsVerticalScrollIndicator = true
messageTextView.isUserInteractionEnabled = true
messageTextView.textColor = Theme.primaryColor
messageTextView.dataDetectorTypes = OWSAllowedDataDetectorTypes
messageTextView.text = messageBody
view.addSubview(messageTextView)
messageTextView.autoPinEdge(toSuperviewEdge: .leading)
messageTextView.autoPinEdge(toSuperviewEdge: .trailing)
messageTextView.textContainerInset = UIEdgeInsets(top: 0, left: view.layoutMargins.left, bottom: 0, right: view.layoutMargins.right)
messageTextView.autoPin(toTopLayoutGuideOf: self, withInset: 0)
messageTextView.autoPinEdge(toSuperviewEdge: .top)
messageTextView.autoPinEdge(toSuperviewMargin: .leading)
messageTextView.autoPinEdge(toSuperviewMargin: .trailing)
let footer = UIToolbar()
view.addSubview(footer)
footer.autoPinWidthToSuperview(withMargin: 0)
footer.autoPinWidthToSuperview()
footer.autoPinEdge(.top, to: .bottom, of: messageTextView)
footer.autoPin(toBottomLayoutGuideOf: self, withInset: 0)

Loading…
Cancel
Save