V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
V2EX  ›  bytelee  ›  全部回复第 17 页 / 共 18 页
回复总数  358
1 ... 9  10  11  12  13  14  15  16  17  18  
2014 年 11 月 25 日
回复了 jun4rui 创建的主题 GDG 普通开发者如何交那 25 美元注册费?
用财付通的境外卡,可以做一个虚拟的卡
已经下载,正符合我的需求

题主打算做下合作么?加我QQ:1281494013
2014 年 6 月 20 日
回复了 zyAndroid 创建的主题 分享创造 扇贝听力正式上线!送兑换码了
CDDBFICC
HFBDBHFD

taken
2014 年 1 月 19 日
回复了 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 直接用吧 边用边学就知道了 先看原理我觉得帮助不大。原理无非就是编码算法和解码算法。
2013 年 11 月 10 日
回复了 ShiningRay 创建的主题 程序员 大家最近有看中什么新的编程语言么
@KDr2 逮住你啦
2013 年 11 月 7 日
回复了 adow 创建的主题 iDev XCode5 下的 iOS Simulator 6.1 运行的时候非常的卡啊
不光卡,我的网络请求的时候会阻塞。。。。。
2013 年 10 月 8 日
回复了 Ricepig 创建的主题 程序员 稍微吐槽一下ObjC的函数调用
一开始怪 后来你会喜欢上他的
1 ... 9  10  11  12  13  14  15  16  17  18  
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5823 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 27ms · UTC 02:52 · PVG 10:52 · LAX 19:52 · JFK 22:52
♥ Do have faith in what you're doing.