Desidero aggiungere un bordo bianco a UIImageView. Ho provato quanto segue, ma non ha funzionato:Come aggiungere solo il bordo destro a UIImageView
UIImage *image = [UIImage imageNamed:imagePath];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
CGRect rect = imageView.frame;
rect.size.width = rect.size.width + 1; // create white right border
[imageView setBackgroundColor:[UIColor whiteColor]];
imageView.frame = rect;
[myViewView addSubview:imageView];
ma questo è quello che faccio nel mio codice ...? – headkit
si effettua un normale UIView e quindi si aggiunge imageView. L'UIView dovrebbe essere quello più grande, non l'imageView. – CBredlow
ma UIImageView è ereditato da un UIView. Non è solo una visione per molto allora? perché il mio codice non funziona? – headkit