//创建并从底部弹出来
- (void)viewDidLoad
{
[super
viewDidLoad];
[self
setupDocumentControllerWithURL:fileURL];
CGRect rect =
CGRectMake(0,
0, ScreenWidth,
ScreenHeight);
// [s...
分类:
其他好文 时间:
2014-06-28 08:34:02
阅读次数:
202
第一步:我们需要在Fragment中定一个接口,并确保我们的容器Activity实现了此接口:
public interface onTestListener {
public void onTest(String str);
}
@Override
public void onAttach(Activity activity) {
super.onAttach(act...
分类:
其他好文 时间:
2014-06-27 23:30:44
阅读次数:
229
1,实现自定义TextView并实现isFocused()方法,代码如下: 1 public class RollTextView extends TextView{ 2 3 public RollTextView(Context context) { 4 super(co...
分类:
移动开发 时间:
2014-06-27 16:46:16
阅读次数:
265
有没有那么一个时候,特别想知道现在的时间呢。上代码。- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"RootV...
分类:
其他好文 时间:
2014-06-27 13:21:01
阅读次数:
150
在项目组中使用Git的工作流程,有个专业的名称叫Git Flow。
一般会使用以下五个分支来进行项目开发:1)master分支 2)develop分支 3)release分支 4)hotfix分支 5)feature分支
不同的分支对应着不同的版本内容,掌握这个Git工作流程,相信能够帮助大家更好在项目组中使用Git,也有利于项目源代码质量的把控。...
分类:
其他好文 时间:
2014-06-27 10:34:04
阅读次数:
258
Singleton.h#define singleton_h(name) + (instancetype)shared##name;#if __has_feature (objc_arc)#define singleton_m(name) \static id _instance; \\+ (id)...
分类:
编程语言 时间:
2014-06-26 16:39:23
阅读次数:
193
Windows 8.1中怎么启用Framework3.5或2.0 ( 一安装就跳到下载 Win8.1自带了Framework):Win+X键 打开开始菜单 -> 命令提示符(管理员)输入:Dism /online /enable-feature /featurename:NetFx3 /All /S...
今天重写 -(id) initwithId:(NSInteger *)word_id word:(NSString *)word detail:(NSString *)detail方法时不注意将init后面的第一个字母写成了小写,在这个方法里面又调用父类的初始化方法(self = [super in...
分类:
移动开发 时间:
2014-06-26 15:17:17
阅读次数:
638
NSKeyedArchiver是加密形式的保存数据。上代码。- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. self.title=@"N...
分类:
其他好文 时间:
2014-06-26 11:24:49
阅读次数:
161
利用UIScrollView的滚动效果来实现,先上图:
实现过程是:在viewController里先加入UIScrollView和UIPageControl:
-(void) loadView {
[super loadView];
UIScrollView *scrollView = [[UIScrollView alloc] initWithFra...
分类:
其他好文 时间:
2014-06-26 07:08:22
阅读次数:
199