上一页 1 ··· 11 12 13 14 15
摘要: 一 ,别的blog上的内容iPhone 4 与iPad开发基础教程一.邮件列表:1.cocoa-dev http://lists.apple.com/mailman/listinfo/cocoa-dev2.xcode-usershttp://lists.apple.com/mailman/listinfo/xcode-users3.quartz-devhttp://lists.apple.com/mailman/listinfo/quartz-dev4.cocoa-unboundhttp://groups.google.com/group/cocoa-unbound5.iphone sdk d 阅读全文
posted @ 2014-03-13 23:54 shidaying 阅读(682) 评论(0) 推荐(0) 编辑
摘要: 首先生成一个继承与UILabel的类SFPStrikeThroughAndUnderLineLabel一,在.h文件里@interface SFPStrikeThroughAndUnderLineLabel : UILabel{ BOOL _isWithStrikeThrough; }@property (nonatomic, assign) BOOL isWithStrikeThrough; //控制是否显示删除线@property (nonatomic, assign) CGFloat strikeThroughLineWidth;//设置删除线的宽度@property (nonatom. 阅读全文
posted @ 2014-03-13 05:23 shidaying 阅读(1516) 评论(0) 推荐(0) 编辑
摘要: NSLog(@"__func__ : %s", __func__);//oc测试环境,打印文件名,方法名NSLog(@"__FUNCTION__ : %s", __FUNCTION__);//同上NSLog(@"__PRETTY_FUNCTION__ : %s", __PRETTY_FUNCTION... 阅读全文
posted @ 2014-03-13 03:14 shidaying 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 1,首先选中Build Phases ,在Link Binary With Libraries 下添加MapKit.framework框架2,在头文件(.h文件)处添加:#import 3,如果需要定位到你当前的位置,该类还需要遵循 :4,声明MKMapView对象: MKMapView *mapView = [[MKMapViewalloc]initWithFrame:[UIScreenmainScreen].applicationFrame]; mapView.showsUserLocation = YES; mapView.mapType = MKMapTypeStandard; ... 阅读全文
posted @ 2014-03-11 19:17 shidaying 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 一,设置单选效果- (void)selectedBtnPress:(UIButton*)sender{ //首先把原来按钮的选中效果消除 for (int i=0;i<num;i++) {//num为总共设置单选效果按钮的数目 UIButton *btn = (UIButton*)[view viewWithTag:i];//view为这些btn的父视图 btn.selected = NO; } sender.selected = YES;//sender.selected = !sender.selected;}二 UIButton同时设置图片和标题//UIEdgeIns... 阅读全文
posted @ 2014-03-11 13:57 shidaying 阅读(3732) 评论(0) 推荐(0) 编辑
摘要: NSLog常见输出格式Table 1Format specifiers supported by theNSStringformatting methods and CFString formatting functionsSpecifierDescription%@Objective-C object, printed as the string returned bydescriptionWithLocale:if available, ordescriptionotherwise. Also works withCFTypeRefobjects, returning the result 阅读全文
posted @ 2014-03-11 13:19 shidaying 阅读(587) 评论(0) 推荐(0) 编辑
摘要: ios 向工程里添加Fonts 1.网上搜索字体文件(后缀名为.ttf,或.odf),假如你加入的字体为微软雅黑 2.把字体库导入到工程的resouce中 3.然后在你的工程的Info.plist文件中新建一行(Add Row),添加key为:UIAppFonts(或Fonts provided b 阅读全文
posted @ 2014-03-11 10:40 shidaying 阅读(354) 评论(0) 推荐(0) 编辑
摘要: iOS 向模拟器里添加照片模拟器里Photos最开始时是没有照片的,有时我们做Demo时需要Photos里面的照片做测试,这时就需要把Mac上的照片导入到模拟器里。步骤如下:1,打开模拟器2,选中照片,把照片往模拟器里拖(这时照片会以Safari打开)3,鼠标长按照片,弹出菜单以后,选中Save Image选项即可,这时照片就会导入到模拟器里了。注意:一次拖动多张照片也只会添加一张,最好是一次拖动一张 阅读全文
posted @ 2014-03-11 10:12 shidaying 阅读(463) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15