What is @interface UITableView (MyTableViewDelegate)

前端 未结 3 977
無奈伤痛
無奈伤痛 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:29

    It is class category declaration - using categories you can split your class implementation into several files or add methods to existing classes.

提交回复
热议问题