hitTest:withEvent:方法流程

一.hitTest:withEvent:調用過程

iOS系統檢測到手指觸摸(Touch)操作時會將其放入當前活動Application的事件隊列,UIApplication會從事件隊列中取出觸摸事件并傳遞給key window(當前接收用戶事件的窗口)處理,window對象首先會使用hitTest:withEvent:方法尋找此次Touch操作初始點所在的視圖(View),即需要將觸摸事件傳遞給其處理的視圖,稱之為hit-test view。

window對象會在首先在view hierarchy的頂級view上調用hitTest:withEvent:,此方法會在視圖層級結構中的每個視圖上調用pointInside:withEvent:,如果pointInside:withEvent:返回YES,則繼續逐級調用,直到找到touch操作發生的位置,這個視圖也就是hit-test view。

hitTest:withEvent:方法的處理流程如下:

首先調用當前視圖的pointInside:withEvent:方法判斷觸摸點是否在當前視圖內;

若返回NO,則hitTest:withEvent:返回nil;

若返回YES,則向當前視圖的所有子視圖(subviews)發送hitTest:withEvent:消息,所有子視圖的遍歷順序是從top到bottom,即從subviews數組的末尾向前遍歷,直到有子視圖返回非空對象或者全部子視圖遍歷完畢;

若第一次有子視圖返回非空對象,則hitTest:withEvent:方法返回此對象,處理結束;

如所有子視圖都返回非,則hitTest:withEvent:方法返回自身(self)。

hitTest:withEvent:方法忽略隱藏(hidden=YES)的視圖,禁止用戶操作(userInteractionEnabled=YES)的視圖,以及alpha級別小于0.01(alpha<0.01)的視圖。如果一個子視圖的區域超過父視圖的bound區域(父視圖的clipsToBounds屬 性為NO,這樣超過父視圖bound區域的子視圖內容也會顯示),那么正常情況下對子視圖在父視圖之外區域的觸摸操作不會被識別,因為父視圖的 pointInside:withEvent:方法會返回NO,這樣就不會繼續向下遍歷子視圖了。當然,也可以重寫 pointInside:withEvent:方法來處理這種情況。

對于每個觸摸操作都會有一個UITouch對 象,UITouch對象用來表示一個觸摸操作,即一個手指在屏幕上按下、移動、離開的整個過程。UITouch對象在觸摸操作的過程中在不斷變化,所以在 使用UITouch對象時,不能直接retain,而需要使用其他手段存儲UITouch的內部信息。UITouch對象有一個view屬性,表示此觸摸操作初始發生所在的視圖,即上面檢測到的hit-test view,此屬性在UITouch的生命周期不再改變,即使觸摸操作后續移動到其他視圖之上。

二.定制hitTest:withEvent:方法

如果父視圖需要對對哪個子視圖可以響應觸摸事件做特殊控制,則可以重寫hitTest:withEvent:pointInside:withEvent:方法。

這里有幾個例子:

hitTest Hacking the responder chain

在此例子中button,scrollview同為topView的子視圖,但scrollview覆蓋在button之上,這樣在在button上的觸 摸操作返回的hit-test view為scrollview,button無法響應,可以修改topView的hitTest:withEvent:方法如下:

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {

UIView *result = [super hitTest:point withEvent:event];

CGPoint buttonPoint = [underButton convertPoint:point fromView:self];

if ([underButton pointInside:buttonPoint withEvent:event]) {

return underButton;

}

return result;

}

這樣如果觸摸點在button的范圍內,返回hittestView為button,從button按鈕可以響應點擊事件。

Paging-enabled UIScrollView with Previews

BSPreviewScrollView

關于這兩個例子,可以看之前文章的說明,見Paging-enabled UIScrollView

三.hitTest:withEvent:探秘,詭異的三次調用

在測試中發現對每一次觸摸操作實際會觸發三次hitTest:withEvent:方法調用,有測試環境視圖結構如下 UIWindow->UIScrollView->TapDetectingImageView

首先在TapDetectingImageView的三次hitTest:withEvent:打印兩個參數查看有何不同

三次的打印結果分別為:

point:{356.25, 232.031} event: timestamp: 25269.8 touches: {()}

point:{356.25, 232.031} event: timestamp: 25269.8 touches: {()}

point:{356.25, 232.031} event: timestamp: 25272 touches: {()}

三次調用的point參數完全相同,event從指針看為同一對象,但時間戳有變化,第一次和第二次的時間戳相同,第三次的與之前有區別。

深入檢查event參數

對于UIEvent對象我們還可以查看其內部的數據,UIEvent實際上是對GSEventRefs的包裝,在GSEventRefs中又包含GSEventRecord,其結構如下:

typedef struct __GSEvent {

CFRuntimeBase _base;

GSEventRecord record;

} GSEvent; typedef struct __GSEvent* GSEventRef;

typedef struct GSEventRecord {

GSEventType type; // 0x8 //2

GSEventSubType subtype;? ? // 0xC //3

CGPoint location;? ? // 0x10 //4

CGPoint windowLocation;? ? // 0x18 //6

int windowContextId;? ? // 0x20 //8

uint64_t timestamp;? ? // 0x24, from mach_absolute_time //9

GSWindowRef window;? ? // 0x2C //

GSEventFlags flags;? ? // 0x30 //12

unsigned senderPID;? ? // 0x34 //13

CFIndex infoSize; // 0x38 //14 } GSEventRecord;

在GSEventRecord中我們可以獲取到GSEvent事件類型type,windowLocation(在窗口坐標系中的位置)等參數。

訪問UIEvent中的GSEventRecord可以使用以下代碼

if ([event respondsToSelector:@selector(_gsEvent)]) {

#define GSEVENT_TYPE 2

#define GSEVENT_SUBTYPE 3

#define GSEVENT_X_OFFSET 6

#define GSEVENT_Y_OFFSET 7

#define GSEVENT_FLAGS 12

#define GSEVENTKEY_KEYCODE 15

#define GSEVENT_TYPE_KEYUP 11

int *eventMem;

eventMem = (int *)objc_unretainedPointer([event performSelector:@selector(_gsEvent)]);

if (eventMem) {

int eventType = eventMem[GSEVENT_TYPE];

int eventSubType = eventMem[GSEVENT_SUBTYPE];

float xOffset =? *((float*)(eventMem + GSEVENT_X_OFFSET));

float yOffset =? *((float*)(eventMem + GSEVENT_Y_OFFSET));

}

}

按照上文描述的方法我們獲取到UIEvent內部的windowLocation數據,同時將接收到的point參數在window坐標系中的位置也打印出,這樣三次調用的數據分別為

point:{356.25, 232.031} windowPoint:{152, 232} event: timestamp: 25269.8 touches: {()} gsEventType:3001 gsXoffset:213.000000 gsYoffset:316.000000

point:{356.25, 232.031} windowPoint:{152, 232} event: timestamp: 25269.8 touches: {()} gsEventType:3001 gsXoffset:213.000000 gsYoffset:316.000000

point:{356.25, 232.031} windowPoint:{152, 232} event: timestamp: 25272 touches: {()} gsEventType:3001 gsXoffset:152.000000 gsYoffset:232.000000

第一次和第二次 調用的時間戳相同,GSEvent中的windowLocation也相同,但windowLocation并不是當前請求的point位置,第三次請求 的時間戳與前兩次不同,GSEvent中的windowLocation與當前請求的point位置一致。

多次點擊可發現,第一次和第二次調用中的windowLocation數據實際上是上次點擊操作的位置,猜測前兩次hitTest是對上次點擊操作的終結?第三次hitTest才是針對當前點擊的。

調用棧分析

使用

[NSThreadcallStackSymbols];

可以獲取到當前線程的調用棧數據,在TapDetectingImageView的hitTest:withEvent:中打印調用棧信息,分別為:

第一次調用:

0? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x0002b52d -[TapDetectingImageView hitTest:withEvent:] + 93

1? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f4d5 __38-[UIView(Geometry) hitTest:withEvent:]_block_invoke_0 + 132

2? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b515a7 __NSArrayChunkIterate + 359

3? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b2903f __NSArrayEnumerate + 1023

4? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b28a16 -[NSArray enumerateObjectsWithOptions:usingBlock:] + 102

5? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f3d1 -[UIView(Geometry) hitTest:withEvent:] + 640

6? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00497397 -[UIScrollView hitTest:withEvent:] + 79

7? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f4d5 __38-[UIView(Geometry) hitTest:withEvent:]_block_invoke_0 + 132

8? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b515a7 __NSArrayChunkIterate + 359

9? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b2903f __NSArrayEnumerate + 1023

10? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b28a16 -[NSArray enumerateObjectsWithOptions:usingBlock:] + 102

11? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f3d1 -[UIView(Geometry) hitTest:withEvent:] + 640

12? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x0002e01b -[UIEventProbeWindow hitTest:withEvent:] + 395

13? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00477a02 __47+[UIWindow _hitTestToPoint:pathIndex:forEvent:]_block_invoke_0 + 150

14? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00477888 +[UIWindow _topVisibleWindowPassingTest:] + 196

15? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00477965 +[UIWindow _hitTestToPoint:pathIndex:forEvent:] + 177

16? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0043cd06 _UIApplicationHandleEvent + 1696

17? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff8df9 _PurpleEventCallback + 339

18? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff8ad0 PurpleEventCallback + 46

19? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01aa4bf5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53

20? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01aa4962 __CFRunLoopDoSource1 + 146

21? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01ad5bb6 __CFRunLoopRun + 2118

22? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01ad4f44 CFRunLoopRunSpecific + 276

23? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01ad4e1b CFRunLoopRunInMode + 123

24? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff77e3 GSEventRunModal + 88

25? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff7668 GSEventRun + 104

26? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0043c65c UIApplicationMain + 1211

27? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x000026b2 main + 178

28? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x000025b5 start + 53

29? ???? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00000001 0x0 + 1

第二次調用

0? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x0002b52d -[TapDetectingImageView hitTest:withEvent:] + 93

1? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f4d5 __38-[UIView(Geometry) hitTest:withEvent:]_block_invoke_0 + 132

2? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b515a7 __NSArrayChunkIterate + 359

3? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b2903f __NSArrayEnumerate + 1023

4? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b28a16 -[NSArray enumerateObjectsWithOptions:usingBlock:] + 102

5? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f3d1 -[UIView(Geometry) hitTest:withEvent:] + 640

6? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00497397 -[UIScrollView hitTest:withEvent:] + 79

7? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f4d5 __38-[UIView(Geometry) hitTest:withEvent:]_block_invoke_0 + 132

8? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b515a7 __NSArrayChunkIterate + 359

9? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b2903f __NSArrayEnumerate + 1023

10? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b28a16 -[NSArray enumerateObjectsWithOptions:usingBlock:] + 102

11? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f3d1 -[UIView(Geometry) hitTest:withEvent:] + 640

12? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x0002e01b -[UIEventProbeWindow hitTest:withEvent:] + 395

13? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00477a02 __47+[UIWindow _hitTestToPoint:pathIndex:forEvent:]_block_invoke_0 + 150

14? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00477888 +[UIWindow _topVisibleWindowPassingTest:] + 196

15? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00477965 +[UIWindow _hitTestToPoint:pathIndex:forEvent:] + 177

16? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0043cfd3 _UIApplicationHandleEvent + 2413

17? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff8df9 _PurpleEventCallback + 339

18? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff8ad0 PurpleEventCallback + 46

19? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01aa4bf5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53

20? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01aa4962 __CFRunLoopDoSource1 + 146

21? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01ad5bb6 __CFRunLoopRun + 2118

22? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01ad4f44 CFRunLoopRunSpecific + 276

23? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01ad4e1b CFRunLoopRunInMode + 123

24? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff77e3 GSEventRunModal + 88

25? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff7668 GSEventRun + 104

26? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0043c65c UIApplicationMain + 1211

27? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x000026b2 main + 178

28? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x000025b5 start + 53

29? ???? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00000001 0x0 + 1

第三次調用:

0? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x0002b52d -[TapDetectingImageView hitTest:withEvent:] + 93

1? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f4d5 __38-[UIView(Geometry) hitTest:withEvent:]_block_invoke_0 + 132

2? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b515a7 __NSArrayChunkIterate + 359

3? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b2903f __NSArrayEnumerate + 1023

4? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b28a16 -[NSArray enumerateObjectsWithOptions:usingBlock:] + 102

5? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f3d1 -[UIView(Geometry) hitTest:withEvent:] + 640

6? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00497397 -[UIScrollView hitTest:withEvent:] + 79

7? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f4d5 __38-[UIView(Geometry) hitTest:withEvent:]_block_invoke_0 + 132

8? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b515a7 __NSArrayChunkIterate + 359

9? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b2903f __NSArrayEnumerate + 1023

10? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01b28a16 -[NSArray enumerateObjectsWithOptions:usingBlock:] + 102

11? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0047f3d1 -[UIView(Geometry) hitTest:withEvent:] + 640

12? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x0002e01b -[UIEventProbeWindow hitTest:withEvent:] + 395

13? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0043d986 _UIApplicationHandleEvent + 4896

14? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff8df9 _PurpleEventCallback + 339

15? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff8ad0 PurpleEventCallback + 46

16? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01aa4bf5 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 53

17? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01aa4962 __CFRunLoopDoSource1 + 146

18? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01ad5bb6 __CFRunLoopRun + 2118

19? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01ad4f44 CFRunLoopRunSpecific + 276

20? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x01ad4e1b CFRunLoopRunInMode + 123

21? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff77e3 GSEventRunModal + 88

22? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x01ff7668 GSEventRun + 104

23? UIKit? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0043c65c UIApplicationMain + 1211

24? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x000026b2 main + 178

25? RenrenPhoto? ? ? ? ? ? ? ? ? ? ? ? 0x000025b5 start + 53

26? ???? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00000001 0x0 + 1

從調用棧上看,三次調用的路徑都不相同,關鍵區分點在_UIApplicationHandleEvent函數中,

第一次的調用位置為_UIApplicationHandleEvent + 1696

第二次的調用位置為_UIApplicationHandleEvent + 2413

第三次的調用位置為_UIApplicationHandleEvent + 4896

結論

沒有結論,具體機制仍然是撲朔迷離,搞不懂….,實際寫代碼時也不需要考慮這些。

參考:

Event Handling Guide for iOS - Event Delivery

Event Handling Guide for iOS - Hit-Testing

UIView Class Reference

Event handling for iOS - how hitTest:withEvent: and pointInside:withEvent: are related?

UITouch Class Reference

hitTest Hacking the responder chain

Paging-enabled UIScrollView with Previews

BSPreviewScrollView

Paging-enabled UIScrollView

Catching Keyboard Events in iOS

Kenny TM GoogleCode Repo - GSEvent.h (a bit old but still useful)

Kenny TM Github Repo - GSEvent.h

Intercepting status bar touches on the iPhone

Synthesizing a touch event on the iPhone

/*

**當按鈕超過了父視圖范圍,點擊是沒有反應的。因為消息的傳遞是從最下層的父視圖開始調用hittest方法。

[objc] view plain copy print?

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {

UIView *view = [super hitTest:point withEvent:event];

return view;

}

**當存在view時才會傳遞對應的event,現在點擊了父視圖以外的范圍,自然返回的是nil。所以當子視圖(比如按鈕btn)因為一些原因超出了父視圖范圍,就要重寫hittest方法,讓其返回對應的子視圖,來接收事件。即:點擊的點在自視圖范圍內(self.button)就返回self.button此時就會執行self.button的點擊事件

*/

- (UIView*)hitTest:(CGPoint)point withEvent:(UIEvent*)event {

//先執行父類的方法返回響應對象

UIView*view = [superhitTest:pointwithEvent:event];

//點擊了父類以外的地方所以返回nil

if(view ==nil) {

//點轉化成在self.button內的坐標

CGPointtempoint = [self.buttonconvertPoint:pointfromView:self];

//判斷是不是在self.button.bounds的范圍內如果是就響應事件

if(CGRectContainsPoint(self.button.bounds, tempoint))

{

view =self.button;

}

}

returnview;

}

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 228,546評論 6 533
  • 序言:濱河連續發生了三起死亡事件,死亡現場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機,發現死者居然都...
    沈念sama閱讀 98,570評論 3 418
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 176,505評論 0 376
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 63,017評論 1 313
  • 正文 為了忘掉前任,我火速辦了婚禮,結果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當我...
    茶點故事閱讀 71,786評論 6 410
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
    開封第一講書人閱讀 55,219評論 1 324
  • 那天,我揣著相機與錄音,去河邊找鬼。 笑死,一個胖子當著我的面吹牛,可吹牛的內容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 43,287評論 3 441
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 42,438評論 0 288
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當地人在樹林里發現了一具尸體,經...
    沈念sama閱讀 48,971評論 1 335
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 40,796評論 3 354
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發現自己被綠了。 大學時的朋友給我發了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 42,995評論 1 369
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 38,540評論 5 359
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質發生泄漏。R本人自食惡果不足惜,卻給世界環境...
    茶點故事閱讀 44,230評論 3 347
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 34,662評論 0 26
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 35,918評論 1 286
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 51,697評論 3 392
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 47,991評論 2 374

推薦閱讀更多精彩內容