I have problems with positioning floating buttons in right location based on the screen size. It works great when on iPhone 4s but it's in completely different place when on iPhone 6. Could you tell me how to determinate the different iPhones please?
iPhone 4s
editOptionsView = [[UIView alloc] initWithFrame:CGRectMake(226.0f, 540.0f, [[self view] bounds].size.height, 40.0f)];
iPhone 6
editOptionsView = [[UIView alloc] initWithFrame:CGRectMake(226.0f, 627.0f, [[self view] bounds].size.height, 40.0f)];
Thanks a lot