法兰西之吻吧 关注:21贴子:981
  • 5回复贴,共1


IP属地:山东1楼2013-03-01 17:28回复
    基本第三~


    2楼2013-03-02 13:07
    回复
      IP属地:山东3楼2013-03-04 17:32
      回复
        法师小号 ID叫做法兰西之吻 还有个圣骑士 梦回法兰西


        IP属地:山东4楼2013-03-04 17:34
        回复
          碉堡了


          IP属地:山东5楼2013-03-05 15:53
          回复

            #pragma mark-
            #pragma mark Table View Data Source Methods
            - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
            return [self.listData count];
            }
            - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
            static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier" ;
            UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier];
            if(cell == nil)
            {
            cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SimpleTableIdentifier];
            }
            UIImage *image = [UIImage imageNamed:@"star.png" ];
            cell.imageView.image= image;
            NSUInteger row = [indexPath row];
            cell.textLabel.text = [listData objectAtIndex:row];
            return cell;
            }


            IP属地:山东7楼2013-03-11 17:38
            回复