フレームワークを手動で管理することはもうありませんが、代わりにCocoaPodsを使用してお勧め します。
元の答え:
- 上記の偽のフレームワーク@wattson12を使用してください。リソースもコンパイルして保存します。
このスクリプトに触発されて、これをターゲットに追加して、リソースをアプリにコピーします。
SOURCE_PATH="${TARGET_BUILD_DIR}/MYFramework.framework/Resources/"
TARGET_PATH="${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MYFrameworkResources.bundle"
mkdir -p $TARGET_PATH
cp -R $SOURCE_PATH $TARGET_PATH
フレームワークをリソースのコピーステップにドラッグすることもできますが、その場合、不要なヘッダーとコンパイルされたコードも追加されます。
編集
IBからこれらのリソース(たとえばpngファイル)を使用するには、次を置き換えます。
MyImage
に:
MYFrameworkResources.bundle/MyImage.png
壊れた画像アイコンをプレビューしますが、実行中は機能します。
コードからペン先をロードします。
[NSBundle loadNibNamed:@"MYFrameworkResources.bundle/MyNib" ...
最後に、これらのメソッドをNSBundleカテゴリに追加して、メインバンドルまたはMYFrameworkResources.bundleにあるNibリソースへのアクセスを容易にすることができます。
@implementation NSBundle (MyCategory)
+ (NSString *)pathForResource:(NSString *)name
ofType:(NSString *)extension
{
// First try with the main bundle
NSBundle * mainBundle = [NSBundle mainBundle];
NSString * path = [mainBundle pathForResource:name
ofType:extension];
if (path)
{
return path;
}
// Otherwise try with other bundles
NSBundle * bundle;
for (NSString * bundlePath in [mainBundle pathsForResourcesOfType:@"bundle"
inDirectory:nil])
{
bundle = [NSBundle bundleWithPath:bundlePath];
path = [bundle pathForResource:name
ofType:extension];
if (path)
{
return path;
}
}
NSLog(@"No path found for: %@ (.%@)", name, extension);
return nil;
}
+ (NSArray *)loadNibNamed:(NSString *)name
owner:(id)owner
options:(NSDictionary *)options
{
// First try with the main bundle
NSBundle * mainBundle = [NSBundle mainBundle];
if ([mainBundle pathForResource:name
ofType:@"nib"])
{
NSLog(@"Loaded Nib named: '%@' from mainBundle", name);
return [mainBundle loadNibNamed:name
owner:owner
options:options];
}
// Otherwise try with other bundles
NSBundle * bundle;
for (NSString * bundlePath in [mainBundle pathsForResourcesOfType:@"bundle"
inDirectory:nil])
{
bundle = [NSBundle bundleWithPath:bundlePath];
if ([bundle pathForResource:name
ofType:@"nib"])
{
NSLog(@"Loaded Nib named: '%@' from bundle: '%@' ", name, bundle.bundleIdentifier);
return [bundle loadNibNamed:name
owner:owner
options:options];
}
}
NSLog(@"Couldn't load Nib named: %@", name);
return nil;
}
@end
最初にアプリケーションバンドルを調べ、次にMYFrameworkResources.bundleなどを調べます。