【发布时间】:2015-08-25 06:53:56
【问题描述】:
我遇到了这种使用未解决标识符的错误,这对我来说非常模糊,它出现在以下行:
但是“LUTToNSDataConverter”在以下文件中初始化:
//
// LUTToNSDataConverter.h
// imglyKit
//
// Created by Carsten Przyluczky on 29/01/15.
// Copyright (c) 2015 9elements GmbH. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface LUTToNSDataConverter : NSObject
+ (nullable NSData *)colorCubeDataFromLUTNamed:(nonnull NSString *)name interpolatedWithIdentityLUTNamed:(nonnull NSString *)identityName withIntensity:(float)intensity cacheIdentityLUT:(BOOL)shouldCache;
/*
This method reads an LUT image and converts it to a cube color space representation.
The resulting data can be used to feed an CIColorCube filter, so that the transformation
realised by the LUT is applied with a core image standard filter
*/
+ (nullable NSData *)colorCubeDataFromLUT:(nonnull NSString *)name;
@end
我可以补充一下,当我将整个文件夹从 Pods 项目目标拖到我的常规项目目标时,这个变量变得“未解析”,所以 Xcode 可以识别它。我该如何解决这个问题?
【问题讨论】:
标签: ios swift variables xcode6 uiimagepickercontroller