zoukankan      html  css  js  c++  java
  • iPhone 编程常用代码

    1、WebView显示Html。

    [WebView setOpaque:NO];
        [WebView setBackgroundColor:[UIColor clearColor]];
        NSString
    * gifFileName = @"j_0002.gif";
        NSMutableString
    * htmlStr = [NSMutableString string];
        [htmlStr appendString:
    @"Hello Honey"];
        [htmlStr appendString:
    @"<p><img src=\""];
        [htmlStr appendFormat:@
    "%@",gifFileName];
        [htmlStr appendString:@
    "\" alt=\"picture\"/>"];
        [WebView loadHTMLString:htmlStr baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];

     2、Convert date string to date object

    NSDateFormatter *inputFormatter = [[NSDateFormatter alloc] init];
    [inputFormatter setDateFormat:
    @"yyyy-MM-dd'T'HH:mm:ss'Z'"];
    NSDate 
    *formatterDate = [inputFormatter dateFromString:@"2010-01-08T08:09:20Z"];
  • 相关阅读:
    备用
    Python进阶
    *args 和 **kwargs
    C语言
    【Pythno库】-Re
    【C语言】-struct
    Django By Example
    字符串
    Python库
    【Keil】Keil5-改变字的大小和颜色
  • 原文地址:https://www.cnblogs.com/Logen/p/1995597.html
Copyright © 2011-2022 走看看