What is @interface UITableView (MyTableViewDelegate)

前端 未结 3 920
無奈伤痛
無奈伤痛 2021-01-29 02:05

Im looking at some source code written by someone else and its intrigues me to see this line:

@interface UITableView (MyTableViewGestureDelegate)
3条回答
  •  被撕碎了的回忆
    2021-01-29 02:41

    MyTableView : UITableView < MyTableViewGestureDelegate > says your class MyTableView - subclass of UITableView - implements the protocol named MyTableViewGestureDelegate

    UITableView (MyTableViewGestureDelegate) says you are creating a Category for the Class UITableView named MyTableViewGestureDelegate

提交回复
热议问题