我遇到了一个问题,就是用户通过邮箱分享一些东西的时候如果没有设置邮件账号则应用会死掉。昨天看到网易新闻的分享功能,如果通过邮箱而且用户没有设置自己的邮箱则程序会跳到添加邮件账号的页面。于是开始了漫长的搜索之路。。。
很幸运的是就在刚才被我搜到了,下面和大家分享一下: 阅读全文…
我遇到了一个问题,就是用户通过邮箱分享一些东西的时候如果没有设置邮件账号则应用会死掉。昨天看到网易新闻的分享功能,如果通过邮箱而且用户没有设置自己的邮箱则程序会跳到添加邮件账号的页面。于是开始了漫长的搜索之路。。。
很幸运的是就在刚才被我搜到了,下面和大家分享一下: 阅读全文…
今天为了找应用app store的应用更新连接花费了我好久的时间,现在与大家分享一下:
阅读全文…
You can make a UIImage category and use it wherever you need. Based on HitScans response and comments bellow it.
@implementation UIImage (Crop) - (UIImage *)crop:(CGRect)rect { CGFloat scale = [[UIScreen mainScreen] scale]; if (scale>1.0) { rect = CGRectMake(rect.origin.x*scale , rect.origin.y*scale, rect.size.width*scale, rect.size.height*scale); } CGImageRef imageRef = CGImageCreateWithImageInRect([self CGImage], rect); UIImage *result = [UIImage imageWithCGImage:imageRef]; CGImageRelease(imageRef); return result; } @end
You can use it this way:
UIImage *imageToCrop = <yourimagetocrop>;; CGRect cropRect = <areayouwanttocrop>; UIImage *croppedImage = [imageToCrop crop:cropRect];</areayouwanttocrop></yourimagetocrop>
参考网址:http://stackoverflow.com/questions/158914/cropping-a-uiimage
Mac CAF/AIF/MP3 sound file FAQ: How do I convert a CAF file to AIF format, MP3 format, or any other sound file format on Mac OS X, for free?
While writing my Mac “Hide Your Desktop” application, I can’t work with certain sound file formats yet, so I’ve been digging around trying to figure out how to convert Apple’s “CAF” file format into a format I can deal with, and I really need files to be in an AIF, MP3, WAV, or AU format.
Last night I found a cool Mac OS X command-line utility named “afconvert” that lets you convert sound files from one format to another, for free. So I dug into it, and eventually created a shell script that lets me convert all my CAF sound files into AIF sound files. A slightly modified version of the same script will allow you to convert CAF or AIF sound files to MP3, WAV, and other sound file formats. 阅读全文…
作者:金满楼
在笔者的印象中,作为演员的姜文一向很man,而作为导演的他也一贯很man,正如其新作《让子弹飞》,不出所料,又是一部让女人走开的电影——女演员能被人记住的大概只有那两只跃然而出的小白兔)。
虽然电影的场景设定在北洋时期的西南地区,但从风格上来说,《让子弹飞》是一部典型的中国西部片。总体评价,《让子弹飞》是一部成功的商业片,演员一线,段子一流,台词风趣,有流行的潜力;另外就是,电影节奏明快,现代感强,精神气足,鸡血味浓。
当然,在革命史观中,“打鸡血”并不是个坏词,譬如去年的《十月围城》和这次的《让子弹飞》,实则是同一类型,前者说的是为什么要革命,后者说的则是如何革命,归根结底,反抗暴政非革命不行,而革命又非暴力不行。 阅读全文…