hi all
in one .m file i have these codes.
i want to set num variable ( int num ) to static variable i. static int i = num;
#import "RecentView.h"
@implementation RecentView
static int i=0;
- (void)viewDidLoad {
//some code here ...
//int num = [latest intValue];
int num = 10 ;//for example
[super viewDidLoad];
}