Hello people, in the following button is an address showed. My problem is the addresses are very long and how can i get between the two variables in the title of the button an breakline??
NSString *sitz = map.kordinate.herkunft;
NSString *strasse = map.kordinate.strasse;
NSString *strasseMitKomma = [strasse stringByAppendingString:@","];
NSString *fertigesSitzFeld = [strasseMitKomma stringByAppendingString:sitz];
UIButton *firmensitz = [UIButton buttonWithType:UIButtonTypeRoundedRect];
the breakline must be between strasseMitKomma and sitz??
thank you for helping