このような文字列を自動生成したいcover.image_size (300x400)動的キー
image_size静的文字列300動的番号400動的番号
#defineを使いたい
#define WADImageSize(Key,Height,Width) (Key @".image_size" @"("Height @"x" Width@")")
NSLog(@" %@",WADImageSize(@"cover", @"300", @"400"));
Result will be like this **cover.image_size(300x400)**
これはうまくいきますが、「カバー」、「高さ」、「幅」に変数を使用したい
//#define DLogW(fmt,...) (fmt ## VA_ARGS ) のようなものを試していますが、何も機能しません..
NSLog(@" %@",WADImageSize(key, height, width));
助けはありますか?