ƒernando Valle
ƒernando Valle

Reputation: 3714

linker error Undefined symbols

I use this library to download files. But when I compile my project the linker throw me an error. The architecture is armv7.

enter image description here

The origin of this error is because I use:

[[BDMultiDownloader shared] queueRequest:[urlFolder stringByAppendingString:video] completion:^(NSData* data){
                [data writeToFile:file atomically:TRUE];
            }];

Thanks for the help!

Upvotes: 0

Views: 196

Answers (1)

Jim
Jim

Reputation: 73936

When you added the files to your project, was the target you are building ticked?

Select the BDMultiDownloader.m file in the project navigator in the left-hand sidebar, then select the file inspector in the right-hand sidebar. Make sure that the target membership includes the target you are building.

Upvotes: 3

Related Questions