mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
27 lines
576 B
Objective-C
27 lines
576 B
Objective-C
//
|
|
// DTActivityTitleView.h
|
|
// DTFoundation
|
|
//
|
|
// Created by Rene Pirringer on 12.09.12.
|
|
// Copyright (c) 2012 Cocoanetics. All rights reserved.
|
|
//
|
|
|
|
/**
|
|
Alternative view for showing titles with a configurable activity indicator
|
|
instead of default title view in navigationItem.
|
|
*/
|
|
@interface DTActivityTitleView : UIView
|
|
|
|
/**
|
|
Title that is shown
|
|
*/
|
|
@property (nonatomic, copy) NSString *title;
|
|
|
|
/**
|
|
When busy is set to YES the activity indicator starts spinning
|
|
When set to NO the activity indicator stops spinning
|
|
*/
|
|
@property (nonatomic, assign) BOOL busy;
|
|
|
|
@end
|