IOS开展:导航中添加多个button并加入左侧logo

添加多个button,同样只能加入一个
 UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"register", nil) style:UIBarButtonItemStylePlain target:self action:@selector(registerClick:)];
            UIBarButtonItem *anotherButton2 = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"login", nil) style:UIBarButtonItemStylePlain target:self action:@selector(loginClick:)];
            [self.navigationItem setRightBarButtonItems:[NSArray arrayWithObjects: anotherButton,anotherButton2,nil]];

加入Logo,仅仅在第一个页面显示,用以下这种方法

self.shareNavleftView = [[UIView alloc] init];
        self.shareNavleftView.frame = CGRectMake(0.0, 0.0, 191.0, 47.0);
        UIImageView *img = [[UIImageView alloc] init];
        img.image = [UIImage imageNamed:@"oatosLogo.png"];
        img.autoresizingMask = UIViewAutoresizingFlexibleWidth;
        img.frame = self.shareNavleftView.frame;
        [self.shareNavleftView addSubview:img];
        self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:self.shareNavleftView];

用以下这种方法。则会把Logo加入到后面的每个页面。不符合我的需求

[self.navigationController.view addSubview:self.shareNavleftView];

版权声明:本文博主原创文章,博客,未经同意不得转载。

时间: 2024-10-08 09:45:07

IOS开展:导航中添加多个button并加入左侧logo的相关文章

iOS 为导航栏自定义按钮图案Button Image 运行出来的颜色与原本颜色不一样 -解决方案

为相机制作闪光灯,在导航栏自定义了"闪光"图案,希望点击时变换图片,但是一直没有改变,原来是因为设置了Global Tint的颜色,所以系统会自动把图片的颜色改为Global Tint的颜色. 解决方案,设置图片时,添加:imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal 源码: - (void) setFlashOn:(BOOL)isOn { if (self.captureDevice.hasFlash) { UIIm

iOS 在项目中添加支付宝SDK

1.打开客户端demo,以下是需导入到你工程的文件和文件夹: 2.Build Settings -> search path; 在Framework Search Paths中添加AlipaySDK.framework 在Header Search Paths中添加Util和openssl 3.Build Phases -> Link Binary...; 注意:在iOS 9中,动态库文件后缀由.dylib改成了.tbd,所以你可能看到以前的帖子上是libz.dylib. 再次编译试一下吧,g

iOS在一个分类中添加属性

有时候,我们会想在别人的类中添加一个属性.这个属性只会在自己的模块用到,在其它地方无用.那么现在就用两个方案: 1,直接在原类中添加一个属性 2,写一个分类,在分类中将这个属性加进去. 这两种方案实现的异同: 同:都能达到在已有的类中添加一个属性的需求. 异: 第一种方案优点:实现简单.缺点:破坏了已有的类的封装,会给后续开发者带来疑惑.结论:笨方法 第二种方案有点:能与已有类完全分开,保持了模块化的独立性.貌似没有缺点,如果一定要找出一个缺点,那就是一个字"难",因为要用到个高大上的

phpcms导航中添加内部链接

phpcms中栏目有3中类型 1.普通栏目 2.单网页 3.外部链接 其中如果想添加本站的内部链接,可以使用3,然后在添加链接的地方填入剩下的地址即可(需要以/开头) 如: /index.php?m=guestbook&c=index&a=register

iOS: 在UIViewController 中添加Static UITableView

如果你直接在 UIViewController 中加入一个 UITableView 并将其 Content 属性设置为 Static Cells,此时 Xcode 会报错: Static table views are only valid when embedded in UITableViewController instances. 意思是说,如果 UITableView 不是在 UITableViewController 而是在 UIViewController 中的时候,是不允许将 U

iOS在Xcode6中添加空模板

在Xcode中模板位置: Macintosh HD ? 应用程序 ? Xcode(低于版本6的).app ? Contents ? Developer ? Platforms ? iPhoneOS.platform ? Developer ? Library ? Xcode ? Templates ? Project Templates ? Application ? Empty Application.xctemplate 因为Xcode5.1.1或低于该版本的部分Xcode都有空模板,拷贝其

datagridview 中添加了一个button类型的列,怎么写button的事件

1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 using System.Data.Sql; 10 using System.Data.SqlC

IOS之导航栏中添加UITextView控件bug

今天遇到一个奇怪的问题,如下: 在导航栏控制器的rootviewcontroller中,添加了一个UITextView控件,代码如下: - (void)viewDidLoad { [super viewDidLoad]; self.title =@"Test"; UITextView *textview = [[UITextViewalloc]init]; textview.frame = CGRectMake(10, 100, 300, 200); textview.backgrou

文顶顶 iOS开发UI篇—在UIImageView中添加按钮以及Tag的参数说明

ios开发UI篇—在ImageView中添加按钮以及Tag的参数说明 一.tag参数 一个视图通常都只有一个父视图,多个子视图,在开发中可以通过使用子视图的tag来取出对应的子视图.方法为Viewwithtag: 提示点:在xib中如果想要通过tag参数获取对应的控件(属性),不要把tag的参数设置为0,因为xib中所有的对象默认tag都为0,设置为0取不到对象. 二.ImageView中添加按钮(1)ImageView和Button的比较 Button按钮的内部可以放置多张图片(4),而Ima