You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.6 KiB

/**
* Tencent is pleased to support the open source community by making QMUI_iOS available.
* Copyright (C) 2016-2020 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
* http://opensource.org/licenses/MIT
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
*/
//
// UINavigationBar+QMUI.h
// QMUIKit
//
// Created by QMUI Team on 2018/O/8.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface UINavigationBar (QMUI)
/**
UINavigationBar iOS 11 item contentView UINavigationController init qmui_contentView
*/
@property(nonatomic, strong, readonly, nullable) UIView *qmui_contentView API_AVAILABLE(ios(11.0));
/**
UINavigationBar view UINavigationBar
iOS 10 _UIBarBackground
iOS 9 _UINavigationBarBackground
*/
@property(nonatomic, strong, readonly, nullable) UIView *qmui_backgroundView;
/**
qmui_backgroundView view
iOS 10 view qmui_backgroundView subview UIVisualEffectView UIImageView
iOS 9 view qmui_backgroundView subview _UIBackdropView qmui_backgroundView _UINavigationBarBackground UIImageView
@warning view UINavigationBar iOS qmui_shadowImageView qmui_backgroundContentView qmui_backgroundView qmui_backgroundContentView
*/
@property(nonatomic, strong, readonly, nullable) __kindof UIView *qmui_backgroundContentView;
/**
qmui_backgroundView subview线 shadowImage view qmui_backgroundView shadowImage [UIImage new] view 0
*/
@property(nonatomic, strong, readonly, nullable) UIImageView *qmui_shadowImageView;
@end
NS_ASSUME_NONNULL_END