码迷,mamicode.com
首页 >  
搜索关键字:nsinteger    ( 574个结果
自定义按钮设置BadgeNumber
TabbarButton.h@interface TabbarButton : UIButton@property (nonatomic, strong) UIButton *badgeValueView;- (void)setItemBadgeNumber:(NSInteger)number;-....
分类:编程语言   时间:2014-11-08 11:48:41    阅读次数:209
NSMutableParagraphStyle /NSParagraphStyle
NSMutableParagraphStyle ->  NSParagraphStyle ->  NSObject typedef NS_ENUM(NSInteger, NSLineBreakMode) {/* What to do with long lines */     NSLineBreakByWordWrapping = 0,     /* Wrap a...
分类:其他好文   时间:2014-11-07 17:04:33    阅读次数:172
使用sqlite3 有关tableview删除cell的问题
在root页面,想要删除tableviewcell,是有一定顺序的首先要删除 数据库sqlite3 中的数据,然后删除数组中的数据,最后删除cell一般我们知道,删除cell要在删除数组数据之后,因为如果cell是在删除数组之前删除,那么,delegate中的方法-(NSInteger)tableV...
分类:数据库   时间:2014-11-02 16:19:52    阅读次数:210
iOS开发UI篇—UITableview控件使用小结
iOS开发UI篇—UITableview控件使用小结一、UITableview的使用步骤UITableview的使用就只有简单的三个步骤:1.告诉一共有多少组数据方法:- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;...
分类:移动开发   时间:2014-11-02 16:12:34    阅读次数:149
可以循环滚动的展示图
ViewController.h @interface ViewController : UIViewController { NSInteger _index; UIPageControl *_pageCtrl; UIScrollView *_scrollerView; } ViewController.m #import "ViewController.h" @...
分类:其他好文   时间:2014-11-02 09:30:46    阅读次数:194
GCD1:构建Block Objects
问题:希望能够编写自己的 Block Objects 或与 iOS SDK 类使用 Block Objects。 讨论:1.Block Objects 的对象可以内联或编码为独立的代码块。我们从后一种开始:假设你在 Objective-C 中有一个方法,既能接受 NSInteger 类的 2 个整....
分类:其他好文   时间:2014-10-28 13:45:09    阅读次数:170
开发进阶14_UITableView单行显示
@interfaceViewController()@end@implementationViewController- (void)viewDidLoad { [superviewDidLoad]; }#pragma mark -一共一组- (NSInteger)numberOfSections....
分类:其他好文   时间:2014-10-28 00:20:50    阅读次数:192
UItableview
初学者的问题主要集中在,下面几个问题:一、几个函数总是不被调用:例如:- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;这个代理不被调用的种类很多:1. section的c...
分类:其他好文   时间:2014-10-27 19:20:30    阅读次数:201
iOS中tableview中headerview总保持在屏幕上方和随着屏幕滑动一起移动至消失
1 : tableview中headerview总保持在屏幕上方 :  在代理方法中创建view,并添加到headerview上 l例子: - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {     if ([self.title isEqualToString...
分类:移动开发   时间:2014-10-27 17:46:17    阅读次数:427
tableview小结
初学者的问题主要集中在,下面几个问题: 一、几个函数总是不被调用:例如: - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section; 这个代理不被调用的种类很多: 1. section的count没有正确 2. 没有设置代理 3.如果没有设置seciton的高度,仍然...
分类:其他好文   时间:2014-10-27 14:25:20    阅读次数:120
574条   上一页 1 ... 49 50 51 52 53 ... 58 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!