源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

iOS自动生成表格效果的实现代码

  • 时间:2020-05-11 21:47 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:iOS自动生成表格效果的实现代码
[b]一、效果图[/b] [img]http://files.jb51.net/file_images/article/201703/2017032714073420.jpg[/img] [b]二、工程图[/b] [img]http://files.jb51.net/file_images/article/201703/2017032714073421.jpg[/img] [b]三、代码[/b]。 RootViewController.h
#import <UIKit/UIKit.h>
#import "LabelOnBackImage.h"

@interface RootViewController : UIViewController
{
 LabelOnBackImage *labelFirst;
}

@end

RootViewController.m
#import "RootViewController.h"

@interface RootViewController ()

@end

@implementation RootViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
 self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
 if (self) {
  // Custom initialization
 }
 return self;
}

- (void)viewDidLoad
{
 [super viewDidLoad];
 // Do any additional setup after loading the view.
 
 
 self.title=@"LabelOnBackImage";
 
 
 NSArray *titleArray=[NSArray arrayWithObjects:@"姓名",@"年龄",@"班级", nil];
 NSArray *contentArray=[NSArray arrayWithObjects:@"lucy",@"20",@"0331", nil];
 
 labelFirst = [[LabelOnBackImage alloc] initWithFrame:CGRectMake(5, 100, 300, 400)
          titleArray:titleArray
          contentArray:contentArray
          titleColor:nil
          contentColor:nil];
 [self.view addSubview:labelFirst];

}

- (void)didReceiveMemoryWarning
{
 [super didReceiveMemoryWarning];
 // Dispose of any resources that can be recreated.
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程素材网。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部