V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  bytelee  ›  全部回复第 16 页 / 共 18 页
回复总数  341
1 ... 8  9  10  11  12  13  14  15  16  17 ... 18  
2014-12-13 14:58:24 +08:00
回复了 aheadlead 创建的主题 分享发现 天哪...12306 手机客户端 UI 竟然更新了...
@icedx 是呀 很多都能做到啊 比如我的 盛名列车时刻 :)
2014-12-05 13:42:48 +08:00
回复了 josehu8 创建的主题 问与答 RMBP 更新 chrome39 后无限闪退,求助啊!!!!!
更新到最新的开发版本,今早发布的。已经测试可以用了。建议翻墙
2014-11-29 14:33:30 +08:00
回复了 764664 创建的主题 分享发现 Linode 新用户注册赠送 25 美元
@love 我充完立马就送了啊 难道分用户?
2014-11-25 14:39:19 +08:00
回复了 jun4rui 创建的主题 GDG 普通开发者如何交那 25 美元注册费?
用财付通的境外卡,可以做一个虚拟的卡
已经下载,正符合我的需求

题主打算做下合作么?加我QQ:1281494013
2014-06-20 10:47:57 +08:00
回复了 zyAndroid 创建的主题 分享创造 扇贝听力正式上线!送兑换码了
CDDBFICC
HFBDBHFD

taken
2014-01-19 11:28:52 +08:00
回复了 parkman 创建的主题 iDev [求教][IOS orientation] IOS-7如何固定单个viewController的方向?
直接贴给你方法看看吧:
- (void)setOristation:(UIDeviceOrientation)oritation
{
if (oritation != [[UIDevice currentDevice] orientation] && [[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)])
{
SEL selector = NSSelectorFromString(@"setOrientation:");
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[UIDevice instanceMethodSignatureForSelector:selector]];
[invocation setSelector:selector];
[invocation setTarget:[UIDevice currentDevice]];
int val = oritation;
[invocation setArgument:&val atIndex:2];
[invocation invoke];

CGRect bounds = [[UIScreen mainScreen] bounds];

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3];
[UIView setAnimationCurve:2];
CGRect frame = CGRectZero;
if(oritation == UIDeviceOrientationLandscapeLeft)
{
frame = CGRectMake(bounds.size.width-20, 0, 20, bounds.size.height);
}
else if(oritation == UIDeviceOrientationLandscapeRight)
{
frame = CGRectMake(0, 0, 20, bounds.size.height);
}
else if(oritation == UIDeviceOrientationPortraitUpsideDown)
{
frame = CGRectMake(0, bounds.size.height-20, bounds.size.width, 20);
}
else if(oritation == UIDeviceOrientationPortrait)
{
frame = CGRectMake(0, 0, bounds.size.width, 20);
}
self.statusBarView.frame = frame;
[UIView commitAnimations];
}
[UIViewController attemptRotationToDeviceOrientation];
}
ffmpeg 直接用吧 边用边学就知道了 先看原理我觉得帮助不大。原理无非就是编码算法和解码算法。
1 ... 8  9  10  11  12  13  14  15  16  17 ... 18  
关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2089 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 24ms · UTC 04:45 · PVG 12:45 · LAX 21:45 · JFK 00:45
Developed with CodeLauncher
♥ Do have faith in what you're doing.