IOS trivia point (continuous update)

Source: Internet
Author: User

1. How to set the font size of button title by code

Set Button.titleLabel.font = [Uifont systemfontofsize:<# (CGFloat) #>];

2. Get the current time

    NSDate *timedate=[nsdate Date];         * Dateformatter=[[NSDateFormatter alloc] init];        [Dateformatter Setdateformat: @" yyyymmddhhmmsssss " ];         *locationstring=[dateformatter Stringfromdate:timedate];

3. The method of judging whether the string is a null character

-(BOOL) isblankstring: (NSString *)string {    if(string= = Nil | |string==NULL) {        returnYES; }    if([stringIskindofclass:[nsnullclass]]) {        returnYES; }    if([[stringStringbytrimmingcharactersinset:[nscharacterset Whitespacecharacterset]] length]==0) {        returnYES; }    returnNO;}

4, TableView optimization

    // Refresh the entire table     [_tableview reloaddata];         // refreshes the current row    [_tableview Reloadrowsatindexpaths:@[indexpath] withrowanimation:uitableviewrowanimationautomatic];

5, Baidu map Custom pin image

-(Bmkannotationview *) Mapview: (Bmkmapview *) View viewforannotation: (ID<BMKAnnotation>) annotation{//generate reuse Flag identifier    StaticNSString *annotationviewid =@"Annotationviewid"; //Check if there is a reuse cachebmkannotationview* Annotationview =[view Dequeuereusableannotationviewwithidentifier:annotationviewid]; ((Bmkpinannotationview*) annotationview). Pincolor =Bmkpinannotationcolorgreen; Annotationview.image= [UIImage imagenamed:@"Xxx.png"];}

IOS trivia point (continuous update)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.