2011-10-10 2 views
0

Je fais une application de la bible, j'ai complété l'affichage des versets dans textview.I est devenu frappé quand je tape un verset je ne devrais pas mis en évidence. Je ne savais pas comment faire ceci.J'offre une URL d'image pour montrer que je veux exactement comme ça. Merci à l'avanceTextView soulignant les doutes de texte

.image

+0

Existe-t-il un code de source d'application ios bible disponible pour référence? – ICoder

Répondre

1

texte View a une propriété en double presssing sur la vue du texte que nous pouvons obtenir les lignes highlited comme u a demandé c'était l'exemple de code ci-dessous

.h

{ 
    UITextView *textView; 
} 
@property (nonatomic, retain) UITextView *text 

fichier .m

-(void)setupTextView 
{ 
    self.textView = [[[UITextView alloc] initWithFrame:self.view.frame] autorelease]; 
    self.textView.textColor = [UIColor blackColor]; 
    self.textView.font = [UIFont fontWithName:@"Arial" size:18]; 
    self.textView.delegate = self; 
    self.textView.backgroundColor = [UIColor whiteColor]; 

    self.textView.text = @"Hello this is about the text view, the difference in text view and the text field is that you can display large data or paragraph in text view but in text field you cant."; 
    self.textView.returnKeyType = UIReturnKeyDefault; 
    self.textView.keyboardType = UIKeyboardTypeDefault; // use the default type input method (entire keyboard) 
    self.textView.scrollEnabled = YES; 

    // this will cause automatic vertical resize when the table is resized 
    self.textView.autoresizingMask = UIViewAutoresizingFlexibleHeight; 
    // note: for UITextView, if you don't like autocompletion while typing use: 
    // myTextView.autocorrectionType = UITextAutocorrectionTypeNo; 
    [self.view addSubview: self.textView]; 
} 

appeler la méthode dans viewdidload

+0

mais je veux la couleur en surbrillance comme yello ou orange, et aussi j'ai une énorme quantité de valeurs de texte dans textview, quand l'utilisateur sélectionne un verset il met en évidence ce verset olnly – ICoder