Skip to content

AndyFightting/HomePageProj

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HomePageProj

模仿新浪微博的个人主页,用ViewController而不是tableView。这样的的组织结构就像Android的Fragment,各自item项里的数据在各自的Contoller里处理。

添加了导航模糊渐变处理,用ANBlurredTableView改的,它和tableView耦合了,改了改独立成了UIView,使用简单方便,效果也不错!

图片 图片

  //使用:
    BlurredView* blurredView = [[BlurredView alloc]initWithFrame:CGRectMake(0, 0, 100,100)];
    [blurredView setBackgroundImage:backImg];
    [self.view addSubview:blurredView];
  //然后在 scrollViewDidScroll:方法中调用如下方法
    [blurredView updateBlurringWithFloatValue:contentOffSet.y]; //传 y<=0 的值!越小越模糊
  
  //或者在时间范围内渐变调用
  [blurredView updateBlurringDuringSecond:0.5];
    
    

About

新浪微博个人主页结构

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published