//
// ShareView.swift
// Paiai_iOS
//
// Created by ffib on 2019/3/21.
// Copyright © 2019 yb. All rights reserved.
//
import UIKit
class ShareView: UIView {
}
extension ShareView {
func activateConstraints() {
}
func activateConstraintsShareView() {
guard let superView = superview else { return }
self.translatesAutoresizingMaskIntoConstraints = false
}
}
|