gpt4 book ai didi

iphone - 如何解决 Objective C 中函数的警告隐式声明

转载 作者:太空狗 更新时间:2023-10-30 03:24:08 25 4
gpt4 key购买 nike

日志

warning: implicit declaration of function 'TutorialAlertWithMessageAndDelegate'

这里是我的代码

.h

void TutorialAlertWithMessageAndDelegate(NSString *title, NSString *message, id delegate);


.m
void TutorialAlertWithMessageAndDelegate(NSString *title, NSString *message, id delegate)
{
/* open an alert with OK and Cancel buttons */
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title
message:message
delegate:delegate
cancelButtonTitle:@"Dismiss"
otherButtonTitles: @"Show Tutorial", @"Disable Tutorial", nil];
// otherButtonTitles: @"Show Next Tip", @"Disable Tips", nil];
[alert show];
[alert release];
}

最佳答案

当您尝试在声明函数之前调用它时,会生成该警告。您在头文件 (.h) 中的声明似乎是正确的,但您可能没有在调用该函数的源文件中包含该头文件。一定要放:

#include "Tutorial.h" // replace with actual filename, of course

在该源文件的顶部。

关于iphone - 如何解决 Objective C 中函数的警告隐式声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2256554/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com