好的,我为我的项目创建了一些来自 this tutorial 的自定义类,我想如果我想在我的 ViewControllerWelcome.m 文件中使用这个类,我需要首先使用以下文件在文件顶部导入该类:
#import "KeychainHelper.h
完成后,我在 ViewControllerWelcome.m 文件中创建一个 Keychainhelper 对象,并使用以下 KeychainHelper *keychainhelper = [[KeychainHelper alloc]init];
现在我想检查用户在文本字段中输入的 pin 与存储在钥匙串(keychain)中的 pin。 KeychainHelper 类有一个方法
+ (NSString*)getPasswordForKeyNSString*)aKey;
但我不确定如何在我的 ViewControllerWelcome.m 文件中使用/实现/向此方法发送消息.
您应该能够做到以下几点:
NSString *password = [KeychainHelper getPasswordForKey:inputKey]
关于ios - 如何在 View Controller 中使用自定义类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11067163/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |