I want to add a UIButton
. However, i need the following items displayed on it.
First of all i need to display some text, then a small image then again some text followed by an image as shown in the above diagram. How am i able to do this ?
Also, i need to know if this adheres to apples UI guidelines. If not please suggest how am i suppose to do this ? (May be use a label instead)
Code
button= [UIButton buttonWithType: UIButtonTypeRoundedRect];
button.frame = CGRectMake(210, 285, 100, 18)];
//[button setTitle:@"Show View" forState:UIControlStateNormal];
[button
addTarget:self action:@selector(addProjectPressed:) forControlEvents:UIControlEventTouchUpInside];