あなたが正しく理解しているとすれば、ノーティフィケーションセンターのスワイプジェスチャーアクションを置き換えて、あなたの微調整を提示します。そのような場合、SBBulletinListController
は、あなたが探しているメソッドました:あなたが試みることができるSpringboard
で対応する方法もあります
-(void)handleShowNotificationsGestureBeganWithTouchLocation:(CGPoint)touchLocation;
-(void)handleShowNotificationsGestureChangedWithTouchLocation:(CGPoint)touchLocation velocity:(CGPoint)velocity;
-(void)handleShowNotificationsGestureEndedWithVelocity:(CGPoint)velocity completion:(id)completion;
-(void)handleShowNotificationsGestureCanceled;
:
-(void)handleShowNotificationsSystemGesture:(id)gesture;
-(void)handleHideNotificationsSystemGesture:(id)gesture;
-(void)_showNotificationsGestureBeganWithLocation:(CGPoint)location;
-(void)_showNotificationsGestureChangedWithLocation:(CGPoint)location velocity:(CGPoint)velocity;
-(void)_showNotificationsGestureEndedWithLocation:(CGPoint)location velocity:(CGPoint)velocity;
-(void)_showNotificationsGestureFailed;
-(void)_showNotificationsGestureCancelled;
-(void)_hideNotificationsGestureBegan:(float)began;
-(void)_hideNotificationsGestureChanged:(float)changed;
-(void)_hideNotificationsGestureEndedWithCompletionType:(int)completionType velocity:(CGPoint)velocity;
-(void)_hideNotificationsGestureCancelled;
はMobileSubstrateを使用して、それらをフックしてみます。私は自分自身でこれを試していないが、正しい方向にあなたを指す必要があります。
以下のリンクをご覧ください http://stackoverflow.com/questions/7224895/how-to-make-notification-center-widgets-ios-5 –