1

I have an ObjectiveC class using some protocols. I use Doxygen to create documentation.

@interface MyView : UIView
< MyInterface1
, MyInterface2 >
...

But generated HMTL is

Inherits UIView.

How can I get the protocols used in this class and displayed in HTML export ?

Thanks!

SuperCed
  • 53
  • 5

1 Answers1

1

As far as I recall there were no problems with this. Doxygen is just a parser, it might got confused with those breaks, try to use regular syntax, like

@interface MyView: UIView <MyInterface1, MyInterface2>
Asperi
  • 228,894
  • 20
  • 464
  • 690
  • It works great! We have to put all protocols on same line. Thanks a lot! – SuperCed Jan 28 '20 at 09:36
  • Cool. If answer works for you it is a good citizen practice on SO to mark answer as accepted and vote up it, so community members have better chance to find it if same issue appeared. Thanks. – Asperi Jan 28 '20 at 09:56