如何在@interface行中定义两个委托

发布于 2024-11-08 18:06:08 字数 300 浏览 0 评论 0原文

在 iOS 中,我想包含 FlipsideView 的委托(来自实用程序应用程序模板)和允许滚动视图的委托。 我的尝试是行不通的:

@interface MainViewController : UIViewController 
<FlipsideViewControllerDelegate> <UIScrollViewDelegate> {
 }

我尝试在两个<>之间放置逗号(,)或空格,但行不通。 有人能够并且愿意帮助我解决这个问题吗?

预先感谢您的帮助

In iOS,I would like to include both a delegate for the flipsideView (from a Utility Application template) and a delegate to allow to scroll the view.
My attempt, which does not work, is:

@interface MainViewController : UIViewController 
<FlipsideViewControllerDelegate> <UIScrollViewDelegate> {
 }

I tried to place a comma (,) or a space between the two <>, but it does not work.
Would someone be able and willing to help me concerning this question?

Thank you in advance for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如梦初醒的夏天 2024-11-15 18:06:08

这样做:

@interface MainViewController : UIViewController 
  <FlipsideViewControllerDelegate, UIScrollViewDelegate> 
{

}

语法如下:

@interface 类名:ItsSuperclass <
协议列表>>

例如对于多个协议:

@interface 格式化程序:NSObject <
格式化、美化>

您可以阅读有关协议以及如何采用并符合Apple官方文档

Do it this way:

@interface MainViewController : UIViewController 
  <FlipsideViewControllerDelegate, UIScrollViewDelegate> 
{

}

The syntax is as follows:

@interface ClassName : ItsSuperclass <
protocol list >

For example for multiple protocols:

@interface Formatter : NSObject <
Formatting, Prettifying >

You can read more on protocols and how to adopt and conform in Apple's official Documentation.

你的笑 2024-11-15 18:06:08

仅需要一个<>,并用逗号分隔协议。

@interface MainViewController : UIViewController 
<FlipsideViewControllerDelegate, UIScrollViewDelegate> {
 }

Only one <> is required with comma separating the protocols.

@interface MainViewController : UIViewController 
<FlipsideViewControllerDelegate, UIScrollViewDelegate> {
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文