iOS自定义Status Bar

时间:2025-01-28 21:46:00

关注自定义status bar已有一段时间了,apple文档HUM却说不能自定义,而我在appstore上却看到了一些应用,却自定义了。不知道是否会被拒。网上有一个开源的做得比较好了。地址:/myell0w/MTStatusBarOverlay


它的说明文档也比较清楚,用法也简单。它有两种detailView模式,一种是textDetail,一种是historyDetail,比如我设置的history detail model这样就可以在点status bar的时候在tableview中看到已经post 的message。代码如下:

    MTStatusBarOverlay *overlay = [MTStatusBarOverlay sharedInstance];
     = MTStatusBarOverlayAnimationFallDown;  // MTStatusBarOverlayAnimationShrink
     = MTDetailViewModeHistory;         // enable automatic history-tracking and show in detail-view

    [overlay postMessage:@"Following Twitter…" animated:YES];
    [overlay postMessage:@"Following Twitter1…" animated:YES];
    [overlay postMessage:@"Following Twitter2…" animated:YES];


这样却没有意料中的弹出table view显示history post message.

如果设为 = MTDetailViewModeDetailText;则可以正常弹出一个view.  难道是代码原因。

于是研究了一下源码,发现问题所在。

- (void)setDetailViewHidden:(BOOL)hidden animated:(BOOL)animated {}方法中计算historyTableView的frame的时候y有点问题。

源码中是这样的

y = -(kMaxHistoryTableRowCount - MIN(, kMaxHistoryTableRowCount)) * kHistoryTableRowHeight;

问题就在MIN这个宏。如果改为

uint count = ;
y = -(kMaxHistoryTableRowCount - MIN(count, kMaxHistoryTableRowCount)) * kHistoryTableRowHeight;


就可以正常显示了。


我的OS version: lion 10.7.3

xcode:4.2.1

ios sdk: iOS 5.0